Class: Net::DNS::RR::NS

Inherits:
Net::DNS::RR show all
Defined in:
lib/net/dns/rr/ns.rb

Overview

Name Server Record (NS)

Class for DNS NS resource records.

Constant Summary

Constants inherited from Net::DNS::RR

RRFIXEDSZ, RR_REGEXP

Constants included from Names

Names::INT16SZ

Instance Attribute Summary collapse

Attributes inherited from Net::DNS::RR

#name, #rdata, #ttl

Instance Method Summary collapse

Methods inherited from Net::DNS::RR

#cls, #comp_data, #data, #initialize, #inspect, parse, parse_packet, #to_a, #to_s, #type

Methods included from Names

#dn_comp, #dn_expand, #names_array, #pack_name, #valid?

Constructor Details

This class inherits a constructor from Net::DNS::RR

Instance Attribute Details

#nsdnameObject (readonly)

Gets the name server value.

Returns a String.



13
14
15
# File 'lib/net/dns/rr/ns.rb', line 13

def nsdname
  @nsdname
end

Instance Method Details

#valueObject

Gets the standardized value for this record, represented by the value of nsdname.

Returns a String.



19
20
21
# File 'lib/net/dns/rr/ns.rb', line 19

def value
  nsdname.to_s
end