aboutsummaryrefslogtreecommitdiffstats
path: root/packet-nntp.c
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>2000-05-11 08:18:09 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>2000-05-11 08:18:09 +0000
commit292e38e2c61edcd14bfa30ca3c72bacda1bcbe32 (patch)
treedb4edef02456a48d0f6d505166ac7d70f6c0f644 /packet-nntp.c
parent162800efb308901e0c302517be01226130e39b19 (diff)
Add tvbuff class.
Add exceptions routines. Convert proto_tree_add_*() routines to require tvbuff_t* argument. Convert all dissectors to pass NULL argument ("NullTVB" macro == NULL) as the tvbuff_t* argument to proto_tree_add_*() routines. dissect_packet() creates a tvbuff_t, wraps the next dissect call in a TRY block, will print "Short Frame" on the proto_tree if a BoundsError exception is caught. The FDDI dissector is converted to use tvbuff's. svn path=/trunk/; revision=1939
Diffstat (limited to 'packet-nntp.c')
-rw-r--r--packet-nntp.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/packet-nntp.c b/packet-nntp.c
index 12db6e789a..54b04196a0 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.8 2000/04/08 07:07:31 guy Exp $
+ * $Id: packet-nntp.c,v 1.9 2000/05/11 08:15:30 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -84,13 +84,13 @@ dissect_nntp(const u_char *pd, int offset, frame_data *fd, proto_tree *tree)
if (tree) {
- ti = proto_tree_add_item(tree, proto_nntp, offset, END_OF_FRAME, NULL);
+ ti = proto_tree_add_item(tree, proto_nntp, NullTVB, offset, END_OF_FRAME, NULL);
nntp_tree = proto_item_add_subtree(ti, ett_nntp);
if (pi.match_port == pi.destport) {
- proto_tree_add_item_hidden(nntp_tree, hf_nntp_request, 0, 0, TRUE);
+ proto_tree_add_item_hidden(nntp_tree, hf_nntp_request, NullTVB, 0, 0, TRUE);
} else {
- proto_tree_add_item_hidden(nntp_tree, hf_nntp_response, 0, 0, TRUE);
+ proto_tree_add_item_hidden(nntp_tree, hf_nntp_response, NullTVB, 0, 0, TRUE);
}
/*
@@ -111,7 +111,7 @@ dissect_nntp(const u_char *pd, int offset, frame_data *fd, proto_tree *tree)
/*
* Put this line.
*/
- proto_tree_add_text(nntp_tree, offset, linelen, "%s",
+ proto_tree_add_text(nntp_tree, NullTVB, offset, linelen, "%s",
format_text(data, linelen));
offset += linelen;
data = lineend;