diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-12-19 23:13:42 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-12-19 23:13:42 +0000 |
commit | 1a42ce64574aa62e8ddf92f6316bedc7945842dc (patch) | |
tree | 10c0e59f823050ff0311a1c3f106c44db9ab4b3e /packet-dns.c | |
parent | 29bc812334897c7238745ed3fa393b38f24a022a (diff) | |
download | wireshark-1a42ce64574aa62e8ddf92f6316bedc7945842dc.tar.gz wireshark-1a42ce64574aa62e8ddf92f6316bedc7945842dc.tar.bz2 wireshark-1a42ce64574aa62e8ddf92f6316bedc7945842dc.zip |
From David Fort: update some comments now that RFC 3658 is out, and fix
a typo in the AUTHORS file.
svn path=/trunk/; revision=9363
Diffstat (limited to 'packet-dns.c')
-rw-r--r-- | packet-dns.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packet-dns.c b/packet-dns.c index 0da33d6834..f90159ed24 100644 --- a/packet-dns.c +++ b/packet-dns.c @@ -1,7 +1,7 @@ /* packet-dns.c * Routines for DNS packet disassembly * - * $Id: packet-dns.c,v 1.115 2003/12/17 22:30:42 guy Exp $ + * $Id: packet-dns.c,v 1.116 2003/12/19 23:13:42 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -137,7 +137,7 @@ static dissector_handle_t gssapi_handle; #define T_A6 38 /* IPv6 address with indirection (RFC 2874) */ #define T_DNAME 39 /* Non-terminal DNS name redirection (RFC 2672) */ #define T_OPT 41 /* OPT pseudo-RR (RFC 2671) */ -#define T_DS 43 /* draft-ietf-dnsext-delegation-signature */ +#define T_DS 43 /* Delegation Signature(RFC 3658) */ #define T_TKEY 249 /* Transaction Key (RFC 2930) */ #define T_TSIG 250 /* Transaction Signature (RFC 2845) */ #define T_WINS 65281 /* Microsoft's WINS RR */ @@ -331,7 +331,7 @@ dns_type_name (guint type) NULL, "OPT", /* RFC 2671 */ NULL, - "DS" /* draft-ietf-dnsext-delegation-signer-15.txt */ + "DS" /* RFC 3658 */ }; if (type < sizeof(type_names)/sizeof(type_names[0])) @@ -425,7 +425,7 @@ dns_long_type_name (guint type) NULL, "EDNS0 option", /* RFC 2671 */ NULL, - "Delegation Signer" /* draft-ietf-dnsext-delegation-signer-15.txt */ + "Delegation Signer" /* RFC 3658 */ }; static char unkbuf[7+1+2+1+4+1+1+10+1+1]; /* "Unknown RR type (%u)" */ |