Class: DNS::Zone::RR::PTR
Overview
‘PTR` resource record.
RFC 1035
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
Attributes inherited from Record
Instance Method Summary collapse
Methods inherited from Record
#general_prefix, #initialize, #load_general_and_get_rdata, #type
Constructor Details
This class inherits a constructor from DNS::Zone::RR::Record
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
6 7 8 |
# File 'lib/dns/zone/rr/ptr.rb', line 6 def name @name end |
Instance Method Details
#dump ⇒ Object
8 9 10 11 12 |
# File 'lib/dns/zone/rr/ptr.rb', line 8 def dump parts = general_prefix parts << @name parts.join(' ') end |
#load(string, options = {}) ⇒ Object
14 15 16 17 18 19 |
# File 'lib/dns/zone/rr/ptr.rb', line 14 def load(string, = {}) rdata = load_general_and_get_rdata(string, ) return nil unless rdata @name = rdata self end |