Class: Resolv::DNS::Resource
Overview
A DNS resource abstract class.
Direct Known Subclasses
DomainName, Generic, HINFO, IN::A, IN::AAAA, IN::SRV, IN::WKS, LOC, MINFO, MX, SOA, TXT
Defined Under Namespace
Modules: IN Classes: ANY, CNAME, DomainName, Generic, HINFO, LOC, 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, LOC, 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.
1653 1654 1655 |
# File 'lib/resolv.rb', line 1653 def ttl @ttl end |
Class Method Details
.decode_rdata(msg) ⇒ Object
:nodoc:
1661 1662 1663 |
# File 'lib/resolv.rb', line 1661 def self.decode_rdata(msg) # :nodoc: raise NotImplementedError.new end |
Instance Method Details
#==(other) ⇒ Object
:nodoc:
1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 |
# File 'lib/resolv.rb', line 1665 def ==(other) # :nodoc: return false unless self.class == other.class s_ivars = self.instance_variables s_ivars.sort! s_ivars.delete :@ttl o_ivars = other.instance_variables o_ivars.sort! o_ivars.delete :@ttl return s_ivars == o_ivars && s_ivars.collect {|name| self.instance_variable_get name} == o_ivars.collect {|name| other.instance_variable_get name} end |
#encode_rdata(msg) ⇒ Object
:nodoc:
1657 1658 1659 |
# File 'lib/resolv.rb', line 1657 def encode_rdata(msg) # :nodoc: raise NotImplementedError.new end |
#eql?(other) ⇒ Boolean
:nodoc:
1678 1679 1680 |
# File 'lib/resolv.rb', line 1678 def eql?(other) # :nodoc: return self == other end |
#hash ⇒ Object
:nodoc:
1682 1683 1684 1685 1686 1687 1688 1689 1690 |
# File 'lib/resolv.rb', line 1682 def hash # :nodoc: h = 0 vars = self.instance_variables vars.delete :@ttl vars.each {|name| h ^= self.instance_variable_get(name).hash } return h end |