Class: URI::Socks

Inherits:
Generic
  • Object
show all
Defined in:
lib/uri/socks.rb

Direct Known Subclasses

Socks4, Socks4A

Constant Summary collapse

DEFAULT_PORT =
1080
COMPONENT =
[:scheme, :userinfo, :host, :port, :query].freeze

Class Method Summary collapse

Class Method Details

.build(args) ⇒ Object



8
9
10
11
# File 'lib/uri/socks.rb', line 8

def self.build(args)
  tmp = Util.make_components_hash(self, args)
  super(tmp)
end