Flowdock
method

old_open

Importance_0
Ruby latest stable (v2_5_5) - 0 notes - Class: Net::InternetMessageIO

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v1_8_7_330) is shown here.

old_open(addr, port, open_timeout = nil, read_timeout = nil, debug_output = nil) public

No documentation

This method has no description. You can help the Ruby community by adding new notes.

Hide source
# File lib/net/protocol.rb, line 206
    def InternetMessageIO.old_open(addr, port,
        open_timeout = nil, read_timeout = nil, debug_output = nil)
      debug_output << "opening connection to #{addr}...\n" if debug_output
      s = timeout(open_timeout) { TCPsocket.new(addr, port) }
      io = new(s)
      io.read_timeout = read_timeout
      io.debug_output = debug_output
      io
    end
Register or log in to add new notes.