aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/docsis/packet-rngrsp.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-rngrsp.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-rngrsp.c')
-rw-r--r--plugins/docsis/packet-rngrsp.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/docsis/packet-rngrsp.c b/plugins/docsis/packet-rngrsp.c
index c8d5517d29..24dbb53f67 100644
--- a/plugins/docsis/packet-rngrsp.c
+++ b/plugins/docsis/packet-rngrsp.c
@@ -2,7 +2,7 @@
* Routines for Ranging Response Message dissection
* Copyright 2002, Anand V. Narwani <anand[AT]narwani.org>
*
- * $Id: packet-rngrsp.c,v 1.5 2003/05/28 14:52:52 gerald Exp $
+ * $Id: packet-rngrsp.c,v 1.6 2003/12/13 03:18:38 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -133,7 +133,8 @@ dissect_rngrsp (tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree)
proto_item *it;
proto_tree *rngrsp_tree;
guint8 tlvtype, tlvlen;
- guint16 pos, length;
+ int pos;
+ gint length;
guint8 upchid;
guint16 sid;
gint8 pwr;
@@ -158,8 +159,7 @@ dissect_rngrsp (tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree)
if (tree)
{
it =
- proto_tree_add_protocol_format (tree, proto_docsis_rngrsp, tvb, 0,
- tvb_length_remaining (tvb, 0),
+ proto_tree_add_protocol_format (tree, proto_docsis_rngrsp, tvb, 0, -1,
"Ranging Response");
rngrsp_tree = proto_item_add_subtree (it, ett_docsis_rngrsp);
proto_tree_add_item (rngrsp_tree, hf_docsis_rngrsp_sid, tvb, 0, 2,
@@ -167,7 +167,7 @@ dissect_rngrsp (tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree)
proto_tree_add_item (rngrsp_tree, hf_docsis_rngrsp_upstream_chid, tvb,
2, 1, FALSE);
- length = tvb_length_remaining (tvb, 0);
+ length = tvb_reported_length_remaining (tvb, 0);
pos = 3;
while (pos < length)
{