Class: Resolv::DNS::Resource::IN::WKS
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
|
|
Instance Chain:
|
|
Inherits: |
Resolv::DNS::Resource
|
Defined in: | lib/resolv.rb |
Overview
Well Known Service resource.
Constant Summary
-
ClassValue =
# File 'lib/resolv.rb', line 2204IN::ClassValue
-
TypeValue =
# File 'lib/resolv.rb', line 220311
::Resolv::DNS::Resource - Inherited
Class Method Summary
- .new(address, protocol, bitmap) ⇒ WKS constructor
- .decode_rdata(msg) Internal use only
::Resolv::DNS::Resource - Inherited
::Resolv::DNS::Query - Inherited
Instance Attribute Summary
-
#address
readonly
The host these services run on.
-
#bitmap
readonly
A bit map of enabled services on this host.
-
#protocol
readonly
IP protocol number for these services.
::Resolv::DNS::Resource - Inherited
#ttl | Remaining Time To Live for this ::Resolv::DNS::Resource. |
Instance Method Summary
- #encode_rdata(msg) Internal use only
::Resolv::DNS::Resource - Inherited
::Resolv::DNS::Query - Inherited
Constructor Details
.new(address, protocol, bitmap) ⇒ WKS
Class Method Details
.decode_rdata(msg)
This method is for internal use only.
[ GitHub ]
Instance Attribute Details
#address (readonly)
The host these services run on.
# File 'lib/resolv.rb', line 2216
attr_reader :address
#bitmap (readonly)
A bit map of enabled services on this host.
If protocol is 6 (TCP) then the 26th bit corresponds to the SMTP service (port 25). If this bit is set, then an SMTP server should be listening on TCP port 25; if zero, SMTP service is not supported.
# File 'lib/resolv.rb', line 2231
attr_reader :bitmap
#protocol (readonly)
IP protocol number for these services.
# File 'lib/resolv.rb', line 2221
attr_reader :protocol
Instance Method Details
#encode_rdata(msg)
This method is for internal use only.
[ GitHub ]
# File 'lib/resolv.rb', line 2233
def encode_rdata(msg) # :nodoc: msg.put_bytes(@address.address) msg.put_pack("n", @protocol) msg.put_bytes(@bitmap) end