aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ipx.c
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>1999-07-29 05:47:07 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>1999-07-29 05:47:07 +0000
commit7bd6c15378e920f89c76cd3beeb7e8bcf6a164e3 (patch)
tree3e8a46fe6f7bb69698edb1187655e445bbfda37c /packet-ipx.c
parent6f1d3a3be830da628246f7cea77fe9c491470d17 (diff)
Made the protocol (but not the fields) use the new proto_tree routine,
allowing users to filter on the existence of these protocols. I also added packet-clip.c to the Nmake makefile. svn path=/trunk/; revision=402
Diffstat (limited to 'packet-ipx.c')
-rw-r--r--packet-ipx.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/packet-ipx.c b/packet-ipx.c
index 641fb80f58..8490555de8 100644
--- a/packet-ipx.c
+++ b/packet-ipx.c
@@ -2,7 +2,7 @@
* Routines for NetWare's IPX
* Gilbert Ramirez <gram@verdict.uthscsa.edu>
*
- * $Id: packet-ipx.c,v 1.23 1999/07/20 02:56:44 gram Exp $
+ * $Id: packet-ipx.c,v 1.24 1999/07/29 05:46:57 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@unicom.net>
@@ -49,16 +49,16 @@
*/
-int proto_ipx = -1;
-int hf_ipx_checksum = -1;
-int hf_ipx_len = -1;
-int hf_ipx_hops = -1;
-int hf_ipx_dnode = -1;
-int hf_ipx_snode = -1;
-
-int proto_spx = -1;
-int proto_ipxrip = -1;
-int proto_sap = -1;
+static int proto_ipx = -1;
+static int hf_ipx_checksum = -1;
+static int hf_ipx_len = -1;
+static int hf_ipx_hops = -1;
+static int hf_ipx_dnode = -1;
+static int hf_ipx_snode = -1;
+
+static int proto_spx = -1;
+static int proto_ipxrip = -1;
+static int proto_sap = -1;
static void
dissect_spx(const u_char *pd, int offset, frame_data *fd, proto_tree *tree, int max_data);