aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dns.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2014-08-21 08:43:57 +0200
committerAnders Broman <a.broman58@gmail.com>2014-08-28 07:22:30 +0000
commit7660da2b695edcfc7a6748ca51384199b236d4c4 (patch)
tree0e6dab00b352b2df2d8e3ddcf81fc116008867b4 /epan/dissectors/packet-dns.c
parentedcd2dd57f1649dbb25f1ad0f4a3a77c4d454322 (diff)
DNS: Update EUI48 and EUI64 to final draft (RFC7043)
Change-Id: I2b18ccb874a51e5e752462a34175df8d8a90ce41 Reviewed-on: https://code.wireshark.org/review/3868 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-dns.c')
-rw-r--r--epan/dissectors/packet-dns.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/epan/dissectors/packet-dns.c b/epan/dissectors/packet-dns.c
index f75b41019e..0aab4b7463 100644
--- a/epan/dissectors/packet-dns.c
+++ b/epan/dissectors/packet-dns.c
@@ -470,8 +470,8 @@ typedef struct _dns_conv_info_t {
#define T_L32 105 /* ILNP [RFC6742] */
#define T_L64 106 /* ILNP [RFC6742] */
#define T_LP 107 /* ILNP [RFC6742] */
-#define T_EUI48 108 /*[draft-jabley-dnsext-eui48-eui64-rrtypes] */
-#define T_EUI64 109 /*[draft-jabley-dnsext-eui48-eui64-rrtypes] */
+#define T_EUI48 108 /* EUI 48 Address (RFC7043) */
+#define T_EUI64 109 /* EUI 64 Address (RFC7043) */
#define T_TKEY 249 /* Transaction Key (RFC 2930) */
#define T_TSIG 250 /* Transaction Signature (RFC 2845) */
#define T_IXFR 251 /* incremental transfer (RFC 1995) */
@@ -810,8 +810,8 @@ static const value_string dns_types_vals[] = {
{ T_L32, "L32" }, /* RFC6742 */
{ T_L64, "L64" }, /* RFC6742 */
{ T_LP, "LP" }, /* RFC6742 */
- { T_EUI48, "EUI48" }, /* draft-jabley-dnsext-eui48-eui64-rrtypes6742 */
- { T_EUI64, "EUI64" }, /* draft-jabley-dnsext-eui48-eui64-rrtypes6742 */
+ { T_EUI48, "EUI48" }, /* RFC7043 */
+ { T_EUI64, "EUI64" }, /* RFC7043 */
{ T_TKEY, "TKEY" },
{ T_TSIG, "TSIG" },
{ T_IXFR, "IXFR" },