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

Inherits:
Sender
  • Object
show all
Defined in:
lib/rubygems/vendor/resolv/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.



804
805
806
807
808
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 804

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.



809
810
811
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 809

def data
  @data
end

Instance Method Details

#sendObject



811
812
813
814
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 811

def send
  raise "@sock is nil." if @sock.nil?
  @sock.send(@msg, 0, @host, @port)
end