Class: Resolv::DNS::Requester::UnconnectedUDP::Sender

Inherits:
Sender
  • Object
show all
Defined in:
lib/resolv.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(msg, data, sock, host, port) ⇒ Sender

Returns a new instance of Sender.



776
777
778
779
780
# File 'lib/resolv.rb', line 776

def initialize(msg, data, sock, host, port)
  super(msg, data, sock)
  @host = host
  @port = port
end

Instance Attribute Details

#dataObject (readonly)

Returns the value of attribute data



781
782
783
# File 'lib/resolv.rb', line 781

def data
  @data
end

Instance Method Details

#sendObject



783
784
785
# File 'lib/resolv.rb', line 783

def send
  @sock.send(@msg, 0, @host, @port)
end