Class: DNS::Zonefile::SRV

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) ⇒ SRV

Returns a new instance of SRV.



255
256
257
258
259
260
261
262
263
264
265
266
267
# File 'lib/dns/zonefile.rb', line 255

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.weight = zonefile_record.weight.to_i
    self.port = zonefile_record.port.to_i
    self.domainname = qualify_host(zonefile_record.target.to_s)
  end
end

Instance Attribute Details

#domainnameObject Also known as: target

Returns the value of attribute domainname.



253
254
255
# File 'lib/dns/zonefile.rb', line 253

def domainname
  @domainname
end

#hostObject

Returns the value of attribute host.



253
254
255
# File 'lib/dns/zonefile.rb', line 253

def host
  @host
end

#portObject

Returns the value of attribute port.



253
254
255
# File 'lib/dns/zonefile.rb', line 253

def port
  @port
end

#priorityObject

Returns the value of attribute priority.



253
254
255
# File 'lib/dns/zonefile.rb', line 253

def priority
  @priority
end

#weightObject

Returns the value of attribute weight.



253
254
255
# File 'lib/dns/zonefile.rb', line 253

def weight
  @weight
end