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.
2160 2161 2162 |
# File 'lib/resolv.rb', line 2160 def initialize(data) @data = data end |
Instance Attribute Details
#data ⇒ Object (readonly)
Data for this generic resource.
2167 2168 2169 |
# File 'lib/resolv.rb', line 2167 def data @data end |
Class Method Details
.create(type_value, class_value) ⇒ Object
:nodoc:
2177 2178 2179 2180 2181 2182 2183 2184 |
# File 'lib/resolv.rb', line 2177 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:
2173 2174 2175 |
# File 'lib/resolv.rb', line 2173 def self.decode_rdata(msg) # :nodoc: return self.new(msg.get_bytes) end |
Instance Method Details
#encode_rdata(msg) ⇒ Object
:nodoc:
2169 2170 2171 |
# File 'lib/resolv.rb', line 2169 def encode_rdata(msg) # :nodoc: msg.put_bytes(data) end |