class Resolv::DNS::Resource::MX

Parent:
Resolv::DNS::Resource

Mail Exchanger resource.

Attributes

exchange[R]

The host of this MX.

preference[R]

The preference for this MX.

Public Class Methods

new(preference, exchange) Show source
# File lib/resolv.rb, line 1985
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.