aboutsummaryrefslogtreecommitdiffstats
path: root/packet-portmap.c
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>2000-03-12 04:48:32 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>2000-03-12 04:48:32 +0000
commitf6e92a9e939a28327eea49b5931715ba97a62970 (patch)
tree0b5f52ee7613baacc77f73697eb895592aa6a137 /packet-portmap.c
parent3d6cb57256c889b2f1ba51e89886d9bb9ea812fb (diff)
Break proto_tree_add_item_format() into multiple functions:
proto_tree_add_protocol_format() proto_tree_add_uint_format() proto_tree_add_ipxnet_format() proto_tree_add_ipv4_format() proto_tree_add_ipv6_format() proto_tree_add_bytes_format() proto_tree_add_string_format() proto_tree_add_ether_format() proto_tree_add_time_format() proto_tree_add_double_format() proto_tree_add_boolean_format() If using GCC 2.x, we can check the print-format against the variable args passed in. Regardless of compiler, we can now check at run-time that the field type passed into the function corresponds to what that function expects (FT_UINT, FT_BOOLEAN, etc.) Note that proto_tree_add_protocol_format() does not require a value field, since the value of a protocol is always NULL. It's more intuitive w/o the vestigial argument. Fixed a proto_tree_add_item_format-related bug in packet-isis-hello.c Fixed a variable usage bug in packet-v120.c. (ett_* was used instead of hf_*) Checked in Guy's fix for the function declearation for proto_tree_add_text() and proto_tree_add_notext(). svn path=/trunk/; revision=1713
Diffstat (limited to 'packet-portmap.c')
-rw-r--r--packet-portmap.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/packet-portmap.c b/packet-portmap.c
index 60698d1b17..57db44fdd8 100644
--- a/packet-portmap.c
+++ b/packet-portmap.c
@@ -1,7 +1,7 @@
/* packet-portmap.c
* Routines for portmap dissection
*
- * $Id: packet-portmap.c,v 1.12 2000/01/22 05:49:06 guy Exp $
+ * $Id: packet-portmap.c,v 1.13 2000/03/12 04:47:48 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -74,14 +74,14 @@ int dissect_getport_call(const u_char *pd, int offset, frame_data *fd,
if ( tree )
{
prog = pntohl(&pd[offset+0]);
- proto_tree_add_item_format(tree, hf_portmap_prog,
+ proto_tree_add_uint_format(tree, hf_portmap_prog,
offset, 4, prog, "Program: %s (%u)",
rpc_prog_name(prog), prog);
proto_tree_add_item(tree, hf_portmap_version,
offset+4, 4, pntohl(&pd[offset+4]));
proto = pntohl(&pd[offset+8]);
- proto_tree_add_item_format(tree, hf_portmap_proto,
+ proto_tree_add_uint_format(tree, hf_portmap_proto,
offset+8, 4, proto, "Proto: %s (%u)", ipprotostr(proto), proto);
proto_tree_add_item(tree, hf_portmap_port,
@@ -114,14 +114,14 @@ int dissect_set_call(const u_char *pd, int offset, frame_data *fd,
if ( tree )
{
prog = pntohl(&pd[offset+0]);
- proto_tree_add_item_format(tree, hf_portmap_prog,
+ proto_tree_add_uint_format(tree, hf_portmap_prog,
offset, 4, prog, "Program: %s (%d)",
rpc_prog_name(prog), prog);
proto_tree_add_item(tree, hf_portmap_version,
offset+4, 4, pntohl(&pd[offset+4]));
proto = pntohl(&pd[offset+8]);
- proto_tree_add_item_format(tree, hf_portmap_proto,
+ proto_tree_add_uint_format(tree, hf_portmap_proto,
offset+8, 4, proto, "Proto: %s (%d)", ipprotostr(proto), proto);
proto_tree_add_item(tree, hf_portmap_port,
@@ -142,7 +142,7 @@ int dissect_unset_call(const u_char *pd, int offset, frame_data *fd,
if ( tree )
{
prog = pntohl(&pd[offset+0]);
- proto_tree_add_item_format(tree, hf_portmap_prog,
+ proto_tree_add_uint_format(tree, hf_portmap_prog,
offset, 4, prog, "Program: %s (%d)",
rpc_prog_name(prog), prog);
proto_tree_add_item(tree, hf_portmap_version,
@@ -206,12 +206,12 @@ int dissect_dump_reply(const u_char *pd, int offset, frame_data *fd,
rpc_prog_name(prog), prog, version);
subtree = proto_item_add_subtree(ti, ett_portmap_entry);
- proto_tree_add_item_format(subtree, hf_portmap_prog,
+ proto_tree_add_uint_format(subtree, hf_portmap_prog,
offset+0, 4, prog,
"Program: %s (%u)", rpc_prog_name(prog), prog);
proto_tree_add_item(subtree, hf_portmap_version,
offset+4, 4, version);
- proto_tree_add_item_format(subtree, hf_portmap_proto,
+ proto_tree_add_uint_format(subtree, hf_portmap_proto,
offset+8, 4, proto,
"Protocol: %s (0x%02x)", ipprotostr(proto), proto);
proto_tree_add_item(subtree, hf_portmap_port,
@@ -273,7 +273,7 @@ int dissect_rpcb(const u_char *pd, int offset, frame_data *fd, proto_tree *tree,
if (!BYTES_ARE_IN_FRAME(offset, 4)) return offset;
prog = EXTRACT_UINT(pd, offset + 0);
if (rpcb_tree)
- proto_tree_add_item_format(rpcb_tree, hf_portmap_rpcb_prog,
+ proto_tree_add_uint_format(rpcb_tree, hf_portmap_rpcb_prog,
offset+0, 4, prog,
"Program: %s (%u)", rpc_prog_name(prog), prog);
offset += 4;