Class: Resolv::DNS::Requester::TCP
- Inherits:
-
Resolv::DNS::Requester
- Object
- Resolv::DNS::Requester
- Resolv::DNS::Requester::TCP
- Defined in:
- lib/resolv.rb
Overview
:nodoc:
Defined Under Namespace
Classes: Sender
Instance Method Summary collapse
- #close ⇒ Object
-
#initialize(host, port = Port) ⇒ TCP
constructor
A new instance of TCP.
- #recv_reply(readable_socks) ⇒ Object
- #sender(msg, data, host = @host, port = @port) ⇒ Object
Methods inherited from Resolv::DNS::Requester
Constructor Details
#initialize(host, port = Port) ⇒ TCP
Returns a new instance of TCP.
888 889 890 891 892 893 894 895 |
# File 'lib/resolv.rb', line 888 def initialize(host, port=Port) super() @host = host @port = port sock = TCPSocket.new(@host, @port) @socks = [sock] @senders = {} end |
Instance Method Details
#close ⇒ Object
921 922 923 924 925 926 |
# File 'lib/resolv.rb', line 921 def close super @senders.each_key {|from,id| DNS.free_request_id(@host, @port, id) } end |
#recv_reply(readable_socks) ⇒ Object
897 898 899 900 901 |
# File 'lib/resolv.rb', line 897 def recv_reply(readable_socks) len = readable_socks[0].read(2).unpack('n')[0] reply = @socks[0].read(len) return reply, nil end |
#sender(msg, data, host = @host, port = @port) ⇒ Object
903 904 905 906 907 908 909 910 911 |
# File 'lib/resolv.rb', line 903 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] = [request.length, id].pack('nn') return @senders[[nil,id]] = Sender.new(request, data, @socks[0]) end |