Class: Resolv::DNS::Requester::ConnectedUDP

Inherits:
Resolv::DNS::Requester show all
Defined in:
lib/resolv.rb

Overview

:nodoc:

Defined Under Namespace

Classes: Sender

Instance Method Summary collapse

Methods inherited from Resolv::DNS::Requester

#request

Constructor Details

#initialize(host, port = Port) ⇒ ConnectedUDP

Returns a new instance of ConnectedUDP.



715
716
717
718
719
720
721
722
723
724
725
# File 'lib/resolv.rb', line 715

def initialize(host, port=Port)
  super()
  @host = host
  @port = port
  is_ipv6 = host.index(':')
  sock = UDPSocket.new(is_ipv6 ? Socket::AF_INET6 : Socket::AF_INET)
  @socks = [sock]
  sock.fcntl(Fcntl::F_SETFD, Fcntl::FD_CLOEXEC) if defined? Fcntl::F_SETFD
  DNS.bind_random_port(sock, is_ipv6 ? "::" : "0.0.0.0")
  sock.connect(host, port)
end

Instance Method Details

#closeObject



742
743
744
745
746
747
# File 'lib/resolv.rb', line 742

def close
  super
  @senders.each_key {|from, id|
    DNS.free_request_id(@host, @port, id)
  }
end

#recv_reply(readable_socks) ⇒ Object



727
728
729
730
# File 'lib/resolv.rb', line 727

def recv_reply(readable_socks)
  reply = readable_socks[0].recv(UDPSize)
  return reply, nil
end

#sender(msg, data, host = @host, port = @port) ⇒ Object



732
733
734
735
736
737
738
739
740
# File 'lib/resolv.rb', line 732

def sender(msg, data, host=@host, port=@port)
  unless host == @host && port == @port
    raise RequestError.new("host/port don't match: #{host}:#{port}")
  end
  id = DNS.allocate_request_id(@host, @port)
  request = msg.encode
  request[0,2] = [id].pack('n')
  return @senders[[nil,id]] = Sender.new(request, data, @socks[0])
end