Skip to content

Commit

Permalink
comments update
Browse files Browse the repository at this point in the history
  • Loading branch information
ArrayIterator committed Nov 9, 2023
1 parent 3721e75 commit bd38090
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/ResourceRecord/RRTypes/MX.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use ArrayAccess\DnsRecord\Utils\Buffer;

/**
* HINFO RDATA format - RFC1035 Section 3.3.9
* MX RDATA format - RFC1035 Section 3.3.9
*
* PREFERENCE A 16-bit integer which specifies the preference given to
* this RR among others at the same owner. Lower values
Expand Down
13 changes: 13 additions & 0 deletions src/ResourceRecord/RRTypes/NS.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@
use ArrayAccess\DnsRecord\Abstracts\AbstractResourceRecordType;
use ArrayAccess\DnsRecord\Utils\Buffer;

/**
* NS RDATA format - RFC1035 Section 3.3.11
*
* NSDNAME A <domain-name> which specifies a host which should be
* authoritative for the specified class and domain.
*
* +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
* / NSDNAME /
* / /
* +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
*
* @link https://datatracker.ietf.org/doc/html/rfc1035#section-3.3.11
*/
class NS extends AbstractResourceRecordType
{
const TYPE = 'NS';
Expand Down

0 comments on commit bd38090

Please sign in to comment.