Class: DNS::Zone::RR::PTR

Inherits:
Record
  • Object
show all
Defined in:
lib/dns/zone/rr/ptr.rb

Overview

‘PTR` resource record.

RFC 1035

Instance Attribute Summary collapse

Attributes inherited from Record

#klass, #label, #ttl

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

#nameObject

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

#dumpObject



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, options = {})
  rdata = load_general_and_get_rdata(string, options)
  return nil unless rdata
  @name = rdata
  self
end