class Resolv::DNS::Resource::MX
Mail Exchanger resource.
Attributes
The host of this MX.
The preference for this MX.
Public Class Methods
Source
# File lib/resolv.rb, line 2425 def initialize(preference, exchange) @preference = preference @exchange = exchange end
Creates a new MX record with preference, accepting mail at exchange.