Class: DNS::Zonefile::MX

Inherits:
Record
  • Object
show all
Defined in:
lib/dns/zonefile.rb

Instance Attribute Summary collapse

Attributes inherited from Record

#klass, #ttl

Instance Method Summary collapse

Methods inherited from Record

writer_for_ttl

Constructor Details

#initialize(vars, zonefile_record) ⇒ MX

Returns a new instance of MX.



187
188
189
190
191
192
193
194
195
196
197
# File 'lib/dns/zonefile.rb', line 187

def initialize(vars, zonefile_record)
  @vars = vars
  if zonefile_record
    self.host = qualify_host(zonefile_record.host.to_s)
    @vars[:last_host] = host
    self.ttl = zonefile_record.ttl.to_i
    self.klass = zonefile_record.klass.to_s
    self.priority = zonefile_record.priority.to_i
    self.domainname = qualify_host(zonefile_record.exchanger.to_s)
  end
end

Instance Attribute Details

#domainnameObject Also known as: exchange, exchanger

Returns the value of attribute domainname.



185
186
187
# File 'lib/dns/zonefile.rb', line 185

def domainname
  @domainname
end

#hostObject

Returns the value of attribute host.



185
186
187
# File 'lib/dns/zonefile.rb', line 185

def host
  @host
end

#priorityObject

Returns the value of attribute priority.



185
186
187
# File 'lib/dns/zonefile.rb', line 185

def priority
  @priority
end