Class: Resolv::DNS::Resource::Generic
- Inherits:
-
Resolv::DNS::Resource
- Object
- Query
- Resolv::DNS::Resource
- Resolv::DNS::Resource::Generic
- Defined in:
- lib/resolv.rb
Overview
A generic resource abstract class.
Constant Summary
Constants inherited from Resolv::DNS::Resource
ClassHash, ClassInsensitiveTypes, ClassValue
Instance Attribute Summary collapse
-
#data ⇒ Object
readonly
Data for this generic resource.
Attributes inherited from Resolv::DNS::Resource
Class Method Summary collapse
-
.create(type_value, class_value) ⇒ Object
:nodoc:.
-
.decode_rdata(msg) ⇒ Object
:nodoc:.
Instance Method Summary collapse
-
#encode_rdata(msg) ⇒ Object
:nodoc:.
-
#initialize(data) ⇒ Generic
constructor
Creates a new generic resource.
Methods inherited from Resolv::DNS::Resource
Constructor Details
#initialize(data) ⇒ Generic
Creates a new generic resource.
1705 1706 1707 |
# File 'lib/resolv.rb', line 1705 def initialize(data) @data = data end |
Instance Attribute Details
#data ⇒ Object (readonly)
Data for this generic resource.
1712 1713 1714 |
# File 'lib/resolv.rb', line 1712 def data @data end |
Class Method Details
.create(type_value, class_value) ⇒ Object
:nodoc:
1722 1723 1724 1725 1726 1727 1728 1729 |
# File 'lib/resolv.rb', line 1722 def self.create(type_value, class_value) # :nodoc: c = Class.new(Generic) c.const_set(:TypeValue, type_value) c.const_set(:ClassValue, class_value) Generic.const_set("Type#{type_value}_Class#{class_value}", c) ClassHash[[type_value, class_value]] = c return c end |
.decode_rdata(msg) ⇒ Object
:nodoc:
1718 1719 1720 |
# File 'lib/resolv.rb', line 1718 def self.decode_rdata(msg) # :nodoc: return self.new(msg.get_bytes) end |
Instance Method Details
#encode_rdata(msg) ⇒ Object
:nodoc:
1714 1715 1716 |
# File 'lib/resolv.rb', line 1714 def encode_rdata(msg) # :nodoc: msg.put_bytes(data) end |