Added Built-In infonames

This commit is contained in:
Finn
2025-12-11 09:46:59 +01:00
parent 729a64b021
commit 05ec96981c
4 changed files with 75 additions and 16 deletions

View File

@@ -8,9 +8,9 @@ import java.io.Serializable;
* This is the transport format used in responses and packets.
* Each record contains:
* <ul>
* <li>The record type (A, AAAA, CNAME, TXT, ...)</li>
* <li>A value (IPv4, IPv6, hostname, text, ...)</li>
* <li>Optional priority and weight fields (MX, SRV)</li>
* <li>The record type</li>
* <li>A value</li>
* <li>Optional priority and weight fields</li>
* <li>Optional port field (SRV)</li>
* <li>A TTL defining how long the record may be cached</li>
* </ul>

View File

@@ -22,4 +22,5 @@ public enum INSRecordType {
MX,
SRV,
NS,
INFO,
}