aboutsummaryrefslogtreecommitdiffstats
path: root/packet-dvmrp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-05-10 23:20:38 +0000
committerGuy Harris <guy@alum.mit.edu>2002-05-10 23:20:38 +0000
commitae88c45ef0e996600f277bb74261f42ced995b6c (patch)
treef18ae465f401e1d4668a4ffce5f6c6528af6f89f /packet-dvmrp.c
parent42c395b0e250aa833072dde090d22dd0e97f2564 (diff)
From Joerg Mayer: make a pile of stuff not used outside one source file
static, and add a new "packet-data.h" to declare "proto_data". Display escape sequences in octal in the IAPP dissector, as is now done in the RADIUS dissector. svn path=/trunk/; revision=5441
Diffstat (limited to 'packet-dvmrp.c')
-rw-r--r--packet-dvmrp.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/packet-dvmrp.c b/packet-dvmrp.c
index bc9f6748bf..6d35c32e5b 100644
--- a/packet-dvmrp.c
+++ b/packet-dvmrp.c
@@ -1,7 +1,7 @@
/* packet-dvmrp.c 2001 Ronnie Sahlberg <See AUTHORS for email>
* Routines for IGMP/DVMRP packet disassembly
*
- * $Id: packet-dvmrp.c,v 1.10 2002/05/02 09:34:33 guy Exp $
+ * $Id: packet-dvmrp.c,v 1.11 2002/05/10 23:20:38 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -221,7 +221,7 @@ static const true_false_string tfs_cap_netmask = {
"NOT Netmask capable"
};
-int
+static int
dissect_v3_report(tvbuff_t *tvb, proto_tree *parent_tree, int offset)
{
guint8 m0,m1,m2,m3;
@@ -306,7 +306,7 @@ dissect_v3_report(tvbuff_t *tvb, proto_tree *parent_tree, int offset)
return offset;
}
-int
+static int
dissect_dvmrp_v3(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree, int offset)
{
guint8 code,count;
@@ -446,7 +446,7 @@ dissect_dvmrp_v3(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree, int
}
-int
+static int
dissect_dvmrp_v1(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree, int offset)
{
guint8 code;