Class: Resolv::DNS::Resource::MX

Inherits:
Resolv::DNS::Resource show all
Defined in:
lib/net/dns/resolv.rb

Constant Summary collapse

TypeValue =
15

Constants inherited from Resolv::DNS::Resource

ClassHash, ClassInsensitiveTypes, ClassValue

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Resolv::DNS::Resource

#==, #eql?, get_class, #hash

Constructor Details

#initialize(preference, exchange) ⇒ MX

Returns a new instance of MX.



1633
1634
1635
1636
# File 'lib/net/dns/resolv.rb', line 1633

def initialize(preference, exchange)
  @preference = preference
  @exchange = exchange
end

Instance Attribute Details

#exchangeObject (readonly)

Returns the value of attribute exchange.



1637
1638
1639
# File 'lib/net/dns/resolv.rb', line 1637

def exchange
  @exchange
end

#preferenceObject (readonly)

Returns the value of attribute preference.



1637
1638
1639
# File 'lib/net/dns/resolv.rb', line 1637

def preference
  @preference
end

Class Method Details

.decode_rdata(msg) ⇒ Object

:nodoc:



1644
1645
1646
1647
1648
# File 'lib/net/dns/resolv.rb', line 1644

def self.decode_rdata(msg) # :nodoc:
  preference, = msg.get_unpack('n')
  exchange = msg.get_name
  return self.new(preference, exchange)
end

Instance Method Details

#encode_rdata(msg) ⇒ Object

:nodoc:



1639
1640
1641
1642
# File 'lib/net/dns/resolv.rb', line 1639

def encode_rdata(msg) # :nodoc:
  msg.put_pack('n', @preference)
  msg.put_name(@exchange)
end