Class: Resolv::DNS::Resource::IN::ServiceBinding
- Inherits:
-
Object
- Object
- Resolv::DNS::Resource::IN::ServiceBinding
- Defined in:
- lib/resolv.rb
Overview
Common implementation for SVCB-compatible resource records.
Instance Attribute Summary collapse
-
#params ⇒ Object
readonly
The service parameters for the target host.
-
#priority ⇒ Object
readonly
The priority of this target host.
-
#target ⇒ Object
readonly
The domain name of the target host.
Class Method Summary collapse
-
.decode_rdata(msg) ⇒ Object
:nodoc:.
Instance Method Summary collapse
-
#alias_mode? ⇒ Boolean
Whether this RR is in AliasMode.
-
#encode_rdata(msg) ⇒ Object
:nodoc:.
-
#initialize(priority, target, params = []) ⇒ ServiceBinding
constructor
Create a service binding resource record.
-
#service_mode? ⇒ Boolean
Whether this RR is in ServiceMode.
Constructor Details
#initialize(priority, target, params = []) ⇒ ServiceBinding
Create a service binding resource record.
3037 3038 3039 3040 3041 |
# File 'lib/resolv.rb', line 3037 def initialize(priority, target, params = []) @priority = priority.to_int @target = Name.create(target) @params = SvcParams.new(params) end |
Instance Attribute Details
#params ⇒ Object (readonly)
The service parameters for the target host.
3059 3060 3061 |
# File 'lib/resolv.rb', line 3059 def params @params end |
#priority ⇒ Object (readonly)
The priority of this target host.
The range is 0-65535. If set to 0, this RR is in AliasMode. Otherwise, it is in ServiceMode.
3049 3050 3051 |
# File 'lib/resolv.rb', line 3049 def priority @priority end |
#target ⇒ Object (readonly)
The domain name of the target host.
3054 3055 3056 |
# File 'lib/resolv.rb', line 3054 def target @target end |
Class Method Details
Instance Method Details
#alias_mode? ⇒ Boolean
Whether this RR is in AliasMode.
3064 3065 3066 |
# File 'lib/resolv.rb', line 3064 def alias_mode? self.priority == 0 end |
#encode_rdata(msg) ⇒ Object
:nodoc:
3075 3076 3077 3078 3079 |
# File 'lib/resolv.rb', line 3075 def encode_rdata(msg) # :nodoc: msg.put_pack("n", @priority) msg.put_name(@target, compress: false) @params.encode(msg) end |
#service_mode? ⇒ Boolean
Whether this RR is in ServiceMode.
3071 3072 3073 |
# File 'lib/resolv.rb', line 3071 def service_mode? !alias_mode? end |