class Resolv::DNS::Resource::MX
Mail Exchanger resource.
Attributes
 exchange[R] 
 The host of this MX.
 preference[R] 
 The preference for this MX.
Public Class Methods
# File lib/resolv.rb, line 1981 def initialize(preference, exchange) @preference = preference @exchange = exchange end
Creates a new MX record with preference, accepting mail at exchange.
    Ruby Core © 1993–2017 Yukihiro Matsumoto
Licensed under the Ruby License.
Ruby Standard Library © contributors
Licensed under their own licenses.