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

10 lines
178 B
Ruby
Raw Normal View History

2011-06-09 15:28:05 +00:00
module Sockets
module Proxies
class SOCKS4A < Proxy
def do_proxify(*)
raise NotImplementedError, "SOCKS4A is not yet implemented"
end
end
end
end