Class: Resolv::DNS::Resource::SOA
- Inherits:
-
Resolv::DNS::Resource
- Object
- Query
- Resolv::DNS::Resource
- Resolv::DNS::Resource::SOA
- Defined in:
- lib/resolv.rb
Overview
Start Of Authority resource.
Constant Summary collapse
- TypeValue =
:nodoc:
6
Constants inherited from Resolv::DNS::Resource
ClassHash, ClassInsensitiveTypes, ClassValue
Instance Attribute Summary collapse
-
#expire ⇒ Object
readonly
Time in seconds that a secondary name server is to use the data before refreshing from the primary name server.
-
#minimum ⇒ Object
readonly
The minimum number of seconds to be used for TTL values in RRs.
-
#mname ⇒ Object
readonly
Name of the host where the master zone file for this zone resides.
-
#refresh ⇒ Object
readonly
How often, in seconds, a secondary name server is to check for updates from the primary name server.
-
#retry ⇒ Object
readonly
How often, in seconds, a secondary name server is to retry after a failure to check for a refresh.
-
#rname ⇒ Object
readonly
The person responsible for this domain name.
-
#serial ⇒ Object
readonly
The version number of the zone file.
Attributes inherited from Resolv::DNS::Resource
Class Method Summary collapse
-
.decode_rdata(msg) ⇒ Object
:nodoc:.
Instance Method Summary collapse
-
#encode_rdata(msg) ⇒ Object
:nodoc:.
-
#initialize(mname, rname, serial, refresh, retry_, expire, minimum) ⇒ SOA
constructor
Creates a new SOA record.
Methods inherited from Resolv::DNS::Resource
Constructor Details
#initialize(mname, rname, serial, refresh, retry_, expire, minimum) ⇒ SOA
Creates a new SOA record. See the attr documentation for the details of each argument.
1787 1788 1789 1790 1791 1792 1793 1794 1795 |
# File 'lib/resolv.rb', line 1787 def initialize(mname, rname, serial, refresh, retry_, expire, minimum) @mname = mname @rname = rname @serial = serial @refresh = refresh @retry = retry_ @expire = expire @minimum = minimum end |
Instance Attribute Details
#expire ⇒ Object (readonly)
Time in seconds that a secondary name server is to use the data before refreshing from the primary name server.
1828 1829 1830 |
# File 'lib/resolv.rb', line 1828 def expire @expire end |
#minimum ⇒ Object (readonly)
The minimum number of seconds to be used for TTL values in RRs.
1833 1834 1835 |
# File 'lib/resolv.rb', line 1833 def minimum @minimum end |
#mname ⇒ Object (readonly)
Name of the host where the master zone file for this zone resides.
1800 1801 1802 |
# File 'lib/resolv.rb', line 1800 def mname @mname end |
#refresh ⇒ Object (readonly)
How often, in seconds, a secondary name server is to check for updates from the primary name server.
1816 1817 1818 |
# File 'lib/resolv.rb', line 1816 def refresh @refresh end |
#retry ⇒ Object (readonly)
How often, in seconds, a secondary name server is to retry after a failure to check for a refresh.
1822 1823 1824 |
# File 'lib/resolv.rb', line 1822 def retry @retry end |
#rname ⇒ Object (readonly)
The person responsible for this domain name.
1805 1806 1807 |
# File 'lib/resolv.rb', line 1805 def rname @rname end |
#serial ⇒ Object (readonly)
The version number of the zone file.
1810 1811 1812 |
# File 'lib/resolv.rb', line 1810 def serial @serial end |
Class Method Details
.decode_rdata(msg) ⇒ Object
:nodoc:
1841 1842 1843 1844 1845 1846 1847 |
# File 'lib/resolv.rb', line 1841 def self.decode_rdata(msg) # :nodoc: mname = msg.get_name rname = msg.get_name serial, refresh, retry_, expire, minimum = msg.get_unpack('NNNNN') return self.new( mname, rname, serial, refresh, retry_, expire, minimum) end |
Instance Method Details
#encode_rdata(msg) ⇒ Object
:nodoc:
1835 1836 1837 1838 1839 |
# File 'lib/resolv.rb', line 1835 def encode_rdata(msg) # :nodoc: msg.put_name(@mname) msg.put_name(@rname) msg.put_pack('NNNNN', @serial, @refresh, @retry, @expire, @minimum) end |