ruby-proxifier/lib/sockets/proxies/socks4a.rb

10 lines
178 B
Ruby

module Sockets
module Proxies
class SOCKS4A < Proxy
def do_proxify(*)
raise NotImplementedError, "SOCKS4A is not yet implemented"
end
end
end
end