Class: Resolv::DNS::Resource
Overview
A DNS resource abstract class.
Direct Known Subclasses
DomainName, Generic, HINFO, IN::A, IN::AAAA, IN::SRV, IN::WKS, MINFO, MX, SOA, TXT
Defined Under Namespace
Modules: IN Classes: ANY, CNAME, DomainName, Generic, HINFO, MINFO, MX, NS, PTR, SOA, TXT
Constant Summary collapse
- ClassHash =
:nodoc:
{}
- ClassValue =
Standard (class generic) RRs
nil
- ClassInsensitiveTypes =
:nodoc:
[ # :nodoc: NS, CNAME, SOA, PTR, HINFO, MINFO, MX, TXT, ANY ]
Instance Attribute Summary collapse
-
#ttl ⇒ Object
readonly
Remaining Time To Live for this Resource.
Class Method Summary collapse
-
.decode_rdata(msg) ⇒ Object
:nodoc:.
-
.get_class(type_value, class_value) ⇒ Object
:nodoc:.
Instance Method Summary collapse
-
#==(other) ⇒ Object
:nodoc:.
-
#encode_rdata(msg) ⇒ Object
:nodoc:.
-
#eql?(other) ⇒ Boolean
:nodoc:.
-
#hash ⇒ Object
:nodoc:.
Instance Attribute Details
#ttl ⇒ Object (readonly)
Remaining Time To Live for this Resource.
1481 1482 1483 |
# File 'lib/rubysl/resolv/resolv.rb', line 1481 def ttl @ttl end |
Class Method Details
.decode_rdata(msg) ⇒ Object
:nodoc:
1489 1490 1491 |
# File 'lib/rubysl/resolv/resolv.rb', line 1489 def self.decode_rdata(msg) # :nodoc: raise NotImplementedError.new end |
Instance Method Details
#==(other) ⇒ Object
:nodoc:
1493 1494 1495 1496 1497 1498 |
# File 'lib/rubysl/resolv/resolv.rb', line 1493 def ==(other) # :nodoc: return self.class == other.class && self.instance_variables == other.instance_variables && self.instance_variables.collect {|name| self.instance_eval name} == other.instance_variables.collect {|name| other.instance_eval name} end |
#encode_rdata(msg) ⇒ Object
:nodoc:
1485 1486 1487 |
# File 'lib/rubysl/resolv/resolv.rb', line 1485 def encode_rdata(msg) # :nodoc: raise NotImplementedError.new end |
#eql?(other) ⇒ Boolean
:nodoc:
1500 1501 1502 |
# File 'lib/rubysl/resolv/resolv.rb', line 1500 def eql?(other) # :nodoc: return self == other end |
#hash ⇒ Object
:nodoc:
1504 1505 1506 1507 1508 1509 1510 |
# File 'lib/rubysl/resolv/resolv.rb', line 1504 def hash # :nodoc: h = 0 self.instance_variables.each {|name| h ^= self.instance_eval("#{name}.hash") } return h end |