diff options
author | Jun-ichiro itojun Hagino <itojun@itojun.org> | 2000-03-30 01:33:10 +0000 |
---|---|---|
committer | Jun-ichiro itojun Hagino <itojun@itojun.org> | 2000-03-30 01:33:10 +0000 |
commit | 72ebab08bff6960affe95a44e45083b72064b6f3 (patch) | |
tree | efb6ab2bbcb8332d7477863450b4378c50989355 /packet-dns.h | |
parent | 7dbe2ffaf23d7e486115bf5c39312eecbe3d5e3b (diff) | |
download | wireshark-72ebab08bff6960affe95a44e45083b72064b6f3.tar.gz wireshark-72ebab08bff6960affe95a44e45083b72064b6f3.tar.bz2 wireshark-72ebab08bff6960affe95a44e45083b72064b6f3.zip |
add dissector for OPT pseudo-RR, in RFC2671 section 4.
svn path=/trunk/; revision=1765
Diffstat (limited to 'packet-dns.h')
-rw-r--r-- | packet-dns.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/packet-dns.h b/packet-dns.h index 66705ea05f..693583292d 100644 --- a/packet-dns.h +++ b/packet-dns.h @@ -2,7 +2,7 @@ * Definitions for packet disassembly structures and routines used both by * DNS and NBNS. * - * $Id: packet-dns.h,v 1.5 2000/02/15 21:02:06 gram Exp $ + * $Id: packet-dns.h,v 1.6 2000/03/30 01:33:10 itojun Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -39,6 +39,9 @@ proto_tree * add_rr_to_tree(proto_item *trr, int rr_type, int offset, const char *name, int namelen, const char *type_name, const char *class_name, u_int ttl, u_short data_len); +proto_tree * +add_opt_rr_to_tree(proto_item *trr, int rr_type, int offset, const char *name, + int namelen, const char *type_name, int class, u_int ttl, u_short data_len); void dissect_dns(const u_char *, int, frame_data *, proto_tree *); |