Class: Resolv::DNS::Resource::IN::ServiceBinding

Inherits:
Object
  • Object
show all
Defined in:
lib/resolv.rb

Overview

Common implementation for SVCB-compatible resource records.

Direct Known Subclasses

HTTPS, SVCB

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

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

#paramsObject (readonly)

The service parameters for the target host.



2842
2843
2844
# File 'lib/resolv.rb', line 2842

def params
  @params
end

#priorityObject (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

#targetObject (readonly)

The domain name of the target host.



2837
2838
2839
# File 'lib/resolv.rb', line 2837

def target
  @target
end

Class Method Details

.decode_rdata(msg) ⇒ Object

:nodoc:



2864
2865
2866
2867
2868
2869
# File 'lib/resolv.rb', line 2864

def self.decode_rdata(msg) # :nodoc:
  priority, = msg.get_unpack("n")
  target    = msg.get_name
  params    = SvcParams.decode(msg)
  return self.new(priority, target, params)
end

Instance Method Details

#alias_mode?Boolean

Whether this RR is in AliasMode.

Returns:

  • (Boolean)


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.

Returns:

  • (Boolean)


2854
2855
2856
# File 'lib/resolv.rb', line 2854

def service_mode?
  !alias_mode?
end