diff options
author | Sebastian Wiedenroth <wiedi@frubar.net> | 2019-10-15 23:04:32 +0200 |
---|---|---|
committer | Dan McDonald <danmcd@joyent.com> | 2021-12-13 11:31:06 -0500 |
commit | ffe0b5fa2f11b603291b4b98b4f727bc8c8dbd9c (patch) | |
tree | a9dc8283993165cfa632f61045309139229f4a99 /usr/src/head | |
parent | 01355ae8e99e2965e664160bdd8ac9f0fdc1329c (diff) | |
download | illumos-gate-ffe0b5fa2f11b603291b4b98b4f727bc8c8dbd9c.tar.gz |
14298 snoop could know more DNS resource record types
Reviewed by: Jason King <jason.brian.king+illumos@gmail.com>
Reviewed by: Yuri Pankov <ypankov@tintri.com>
Reviewed by: Peter Tribble <peter.tribble@gmail.com>
Reviewed by: C Fraire <cfraire@me.com>
Approved by: Dan McDonald <danmcd@joyent.com>
Diffstat (limited to 'usr/src/head')
-rw-r--r-- | usr/src/head/arpa/nameser.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/usr/src/head/arpa/nameser.h b/usr/src/head/arpa/nameser.h index dc199077b3..0359a5cd70 100644 --- a/usr/src/head/arpa/nameser.h +++ b/usr/src/head/arpa/nameser.h @@ -373,7 +373,13 @@ typedef enum __ns_type { ns_t_dhcid = 49, /* Dynamic host configuratin identifier */ ns_t_nsec3 = 50, /* Negative security type 3 */ ns_t_nsec3param = 51, /* Negative security type 3 parameters */ + ns_t_tlsa = 52, /* TLSA (RFC 6698) */ + ns_t_smimea = 53, /* S/MIME cert association (RFC 8162) */ ns_t_hip = 55, /* Host Identity Protocol */ + ns_t_cds = 59, /* Child DS (RFC 7344) */ + ns_t_cdnskey = 60, /* DNSKEY(s) the Child wants reflected in DS */ + ns_t_openpgpkey = 61, /* OpenPGP Key (RFC 7929) */ + ns_t_csync = 62, /* Child-To-Parent Synchronization (RFC 7477) */ ns_t_spf = 99, /* Sender Policy Framework */ ns_t_tkey = 249, /* Transaction key */ ns_t_tsig = 250, /* Transaction signature. */ @@ -383,6 +389,7 @@ typedef enum __ns_type { ns_t_maila = 254, /* Transfer mail agent records. */ ns_t_any = 255, /* Wildcard match. */ ns_t_zxfr = 256, /* BIND-specific, nonstandard. */ + ns_t_caa = 257, /* Certification Authority Restriction */ ns_t_dlv = 32769, /* DNSSEC look-aside validatation. */ ns_t_max = 65536 } ns_type; |