Method: Addrinfo#connect
- Defined in:
- lib/socket.rb
#connect(timeout: nil, &block) ⇒ Object
:call-seq:
addrinfo.connect([opts]) {|socket| ... }
addrinfo.connect([opts])
creates a socket connected to the address of self.
The optional argument opts is options represented by a hash. opts may have following options:
- :timeout
-
specify the timeout in seconds.
If a block is given, it is called with the socket and the value of the block is returned. The socket is returned otherwise.
Addrinfo.tcp("www.ruby-lang.org", 80).connect {|s|
s.print "GET / HTTP/1.0\r\nHost: www.ruby-lang.org\r\n\r\n"
puts s.read
}
140 141 142 |
# File 'lib/socket.rb', line 140 def connect(timeout: nil, &block) connect_internal(nil, timeout, &block) end |