diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-07-29 05:47:07 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 1999-07-29 05:47:07 +0000 |
commit | 7bd6c15378e920f89c76cd3beeb7e8bcf6a164e3 (patch) | |
tree | 3e8a46fe6f7bb69698edb1187655e445bbfda37c /packet-nntp.c | |
parent | 6f1d3a3be830da628246f7cea77fe9c491470d17 (diff) | |
download | wireshark-7bd6c15378e920f89c76cd3beeb7e8bcf6a164e3.tar.gz wireshark-7bd6c15378e920f89c76cd3beeb7e8bcf6a164e3.tar.bz2 wireshark-7bd6c15378e920f89c76cd3beeb7e8bcf6a164e3.zip |
Made the protocol (but not the fields) use the new proto_tree routine,
allowing users to filter on the existence of these protocols. I also
added packet-clip.c to the Nmake makefile.
svn path=/trunk/; revision=402
Diffstat (limited to 'packet-nntp.c')
-rw-r--r-- | packet-nntp.c | 19 |
1 files changed, 16 insertions, 3 deletions
diff --git a/packet-nntp.c b/packet-nntp.c index d4fd4900aa..01dd9da4d5 100644 --- a/packet-nntp.c +++ b/packet-nntp.c @@ -2,7 +2,7 @@ * Routines for nntp packet dissection * Copyright 1999, Richard Sharpe <rsharpe@ns.aus.com> * - * $Id: packet-nntp.c,v 1.2 1999/07/07 22:51:49 gram Exp $ + * $Id: packet-nntp.c,v 1.3 1999/07/29 05:47:00 gram Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@unicom.net> @@ -43,6 +43,8 @@ extern packet_info pi; +static int proto_nntp = -1; + void dissect_nntp(const u_char *pd, int offset, frame_data *fd, proto_tree *tree, int max_data) { @@ -77,8 +79,7 @@ dissect_nntp(const u_char *pd, int offset, frame_data *fd, proto_tree *tree, int if (tree) { - ti = proto_tree_add_text(tree, offset, END_OF_FRAME, - "Network News Transfer Protocol"); + ti = proto_tree_add_item(tree, proto_nntp, offset, END_OF_FRAME, NULL); nntp_tree = proto_item_add_subtree(ti, ETT_NNTP); /* @@ -106,3 +107,15 @@ dissect_nntp(const u_char *pd, int offset, frame_data *fd, proto_tree *tree, int } } } + +void +proto_register_nntp(void) +{ +/* static hf_register_info hf[] = { + { &variable, + { "Name", "nntp.abbreviation", TYPE, VALS_POINTER }}, + };*/ + + proto_nntp = proto_register_protocol("Network News Transfer Protocol", "nntp"); + /* proto_register_field_array(proto_nntp, hf, array_length(hf));*/ +} |