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.
2820 2821 2822 2823 2824 |
# File 'lib/resolv.rb', line 2820 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.
2842 2843 2844 |
# File 'lib/resolv.rb', line 2842 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.
2832 2833 2834 |
# File 'lib/resolv.rb', line 2832 def priority @priority end |
#target ⇒ Object (readonly)
The domain name of the target host.
2837 2838 2839 |
# File 'lib/resolv.rb', line 2837 def target @target end |
Class Method Details
Instance Method Details
#alias_mode? ⇒ Boolean
Whether this RR is in AliasMode.
2847 2848 2849 |
# File 'lib/resolv.rb', line 2847 def alias_mode? self.priority == 0 end |
#encode_rdata(msg) ⇒ Object
:nodoc:
2858 2859 2860 2861 2862 |
# File 'lib/resolv.rb', line 2858 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.
2854 2855 2856 |
# File 'lib/resolv.rb', line 2854 def service_mode? !alias_mode? end |