File Manager

Path: /opt/chef/embedded/lib/ruby/gems/2.7.0/gems/proxifier-1.0.3/lib/proxifier/proxies/

Viewing File: socks4a.rb

require "proxifier/proxies/socks"

module Proxifier
  class SOCKS4AProxy < SOCKSProxy
    def do_proxify(*)
      raise NotImplementedError, "SOCKS4A is not yet implemented"
    end
  end
end