aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/docsis/packet-dsarsp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-12-13 03:18:38 +0000
committerGuy Harris <guy@alum.mit.edu>2003-12-13 03:18:38 +0000
commitc20f75c872ff560b2d7a612c80dc1ce1d2be4331 (patch)
tree3796da836583fa87bfb67e91757c4fa47801e396 /plugins/docsis/packet-dsarsp.c
parentd64affe0a47c0a5b31687adbd3849648fc206201 (diff)
Use "int"s, not "guint16"s, as packet offsets (using values shorter
than32 bits risks overflow problems). Use "gint" for tvbuff lengths. Use -1 for uses of "tvb_length_remaining()" that mean "the rest of the tvbuff"; use "tvb_reported_length_remaining()" for "the rest of the packet. Clean up the handling of the DOCSIS payload. svn path=/trunk/; revision=9267
Diffstat (limited to 'plugins/docsis/packet-dsarsp.c')
-rw-r--r--plugins/docsis/packet-dsarsp.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/plugins/docsis/packet-dsarsp.c b/plugins/docsis/packet-dsarsp.c
index 17bb066c8b..912646f2f9 100644
--- a/plugins/docsis/packet-dsarsp.c
+++ b/plugins/docsis/packet-dsarsp.c
@@ -2,7 +2,7 @@
* Routines for Dynamic Service Addition Response dissection
* Copyright 2002, Anand V. Narwani <anand[AT]narwani.org>
*
- * $Id: packet-dsarsp.c,v 1.5 2003/05/28 14:52:52 gerald Exp $
+ * $Id: packet-dsarsp.c,v 1.6 2003/12/13 03:18:38 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -60,13 +60,11 @@ dissect_dsarsp (tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree)
proto_item *it;
proto_tree *dsarsp_tree;
guint16 transid;
- guint16 tlv_data_len;
guint8 response;
tvbuff_t *next_tvb;
transid = tvb_get_ntohs (tvb, 0);
response = tvb_get_guint8 (tvb, 2);
- tlv_data_len = tvb_length_remaining (tvb, 3);
if (check_col (pinfo->cinfo, COL_INFO))
{
@@ -79,8 +77,7 @@ dissect_dsarsp (tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree)
if (tree)
{
it =
- proto_tree_add_protocol_format (tree, proto_docsis_dsarsp, tvb, 0,
- tvb_length_remaining (tvb, 0),
+ proto_tree_add_protocol_format (tree, proto_docsis_dsarsp, tvb, 0, -1,
"DSA Response");
dsarsp_tree = proto_item_add_subtree (it, ett_docsis_dsarsp);
proto_tree_add_item (dsarsp_tree, hf_docsis_dsarsp_tranid, tvb, 0, 2,
@@ -89,7 +86,7 @@ dissect_dsarsp (tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree)
FALSE);
/* Call dissector for Appendix C TLV's */
- next_tvb = tvb_new_subset (tvb, 3, tlv_data_len, tlv_data_len);
+ next_tvb = tvb_new_subset (tvb, 3, -1, -1);
call_dissector (docsis_tlv_handle, next_tvb, pinfo, dsarsp_tree);
}