Flowdock
method

connect_to

Importance_1
connect_to(*remote_addr_args, &block) public

creates a socket connected to remote_addr_args and bound to self.

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("0.0.0.0", 4649).connect_to("www.ruby-lang.org", 80) {|s|
  s.print "GET / HTTP/1.0\r\nHost: www.ruby-lang.org\r\n\r\n"
  puts s.read
}
Show source
Register or log in to add new notes.