Class: Gem::Resolv::DNS::Resource::IN::ServiceBinding
- Inherits:
-
Object
- Object
- Gem::Resolv::DNS::Resource::IN::ServiceBinding
- Defined in:
- lib/rubygems/vendor/resolv/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.
2823 2824 2825 2826 2827 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 2823 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.
2845 2846 2847 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 2845 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.
2835 2836 2837 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 2835 def priority @priority end |
#target ⇒ Object (readonly)
The domain name of the target host.
2840 2841 2842 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 2840 def target @target end |
Class Method Details
Instance Method Details
#alias_mode? ⇒ Boolean
Whether this RR is in AliasMode.
2850 2851 2852 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 2850 def alias_mode? self.priority == 0 end |
#encode_rdata(msg) ⇒ Object
:nodoc:
2861 2862 2863 2864 2865 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 2861 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.
2857 2858 2859 |
# File 'lib/rubygems/vendor/resolv/lib/resolv.rb', line 2857 def service_mode? !alias_mode? end |