Class: Resolv::DNS::Resource::SOA
- Inherits:
-
Resolv::DNS::Resource
- Object
- Query
- Resolv::DNS::Resource
- Resolv::DNS::Resource::SOA
- Defined in:
- lib/logstash/patches/resolv_9270.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.
1853 1854 1855 1856 1857 1858 1859 1860 1861 |
# File 'lib/logstash/patches/resolv_9270.rb', line 1853 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.
1894 1895 1896 |
# File 'lib/logstash/patches/resolv_9270.rb', line 1894 def expire @expire end |
#minimum ⇒ Object (readonly)
The minimum number of seconds to be used for TTL values in RRs.
1899 1900 1901 |
# File 'lib/logstash/patches/resolv_9270.rb', line 1899 def minimum @minimum end |
#mname ⇒ Object (readonly)
Name of the host where the master zone file for this zone resides.
1866 1867 1868 |
# File 'lib/logstash/patches/resolv_9270.rb', line 1866 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.
1882 1883 1884 |
# File 'lib/logstash/patches/resolv_9270.rb', line 1882 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.
1888 1889 1890 |
# File 'lib/logstash/patches/resolv_9270.rb', line 1888 def retry @retry end |
#rname ⇒ Object (readonly)
The person responsible for this domain name.
1871 1872 1873 |
# File 'lib/logstash/patches/resolv_9270.rb', line 1871 def rname @rname end |
#serial ⇒ Object (readonly)
The version number of the zone file.
1876 1877 1878 |
# File 'lib/logstash/patches/resolv_9270.rb', line 1876 def serial @serial end |
Class Method Details
.decode_rdata(msg) ⇒ Object
:nodoc:
1907 1908 1909 1910 1911 1912 1913 |
# File 'lib/logstash/patches/resolv_9270.rb', line 1907 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:
1901 1902 1903 1904 1905 |
# File 'lib/logstash/patches/resolv_9270.rb', line 1901 def encode_rdata(msg) # :nodoc: msg.put_name(@mname) msg.put_name(@rname) msg.put_pack('NNNNN', @serial, @refresh, @retry, @expire, @minimum) end |