Class: Resolv::DNS::Resource::MX
- Inherits:
-
Resolv::DNS::Resource
- Object
- Query
- Resolv::DNS::Resource
- Resolv::DNS::Resource::MX
- Defined in:
- lib/resolv.rb
Overview
Mail Exchanger resource.
Constant Summary collapse
- TypeValue =
:nodoc:
15
Constants inherited from Resolv::DNS::Resource
ClassHash, ClassInsensitiveTypes, ClassValue
Instance Attribute Summary collapse
-
#exchange ⇒ Object
readonly
The host of this MX.
-
#preference ⇒ Object
readonly
The preference for this MX.
Attributes inherited from Resolv::DNS::Resource
Class Method Summary collapse
-
.decode_rdata(msg) ⇒ Object
:nodoc:.
Instance Method Summary collapse
-
#encode_rdata(msg) ⇒ Object
:nodoc:.
-
#initialize(preference, exchange) ⇒ MX
constructor
Creates a new MX record with
preference
, accepting mail atexchange
.
Methods inherited from Resolv::DNS::Resource
Constructor Details
#initialize(preference, exchange) ⇒ MX
Creates a new MX record with preference
, accepting mail at exchange
.
2394 2395 2396 2397 |
# File 'lib/resolv.rb', line 2394 def initialize(preference, exchange) @preference = preference @exchange = exchange end |
Instance Attribute Details
#exchange ⇒ Object (readonly)
The host of this MX.
2407 2408 2409 |
# File 'lib/resolv.rb', line 2407 def exchange @exchange end |
#preference ⇒ Object (readonly)
The preference for this MX.
2402 2403 2404 |
# File 'lib/resolv.rb', line 2402 def preference @preference end |
Class Method Details
.decode_rdata(msg) ⇒ Object
:nodoc:
2414 2415 2416 2417 2418 |
# File 'lib/resolv.rb', line 2414 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:
2409 2410 2411 2412 |
# File 'lib/resolv.rb', line 2409 def encode_rdata(msg) # :nodoc: msg.put_pack('n', @preference) msg.put_name(@exchange) end |