class Gem::Resolv::DNS::Requester::TCP

def initialize(host, port=Port)

:nodoc:
def initialize(host, port=Port)
  super()
  @host = host
  @port = port
  sock = TCPSocket.new(@host, @port)
  @socks = [sock]
  @senders = {}
end