aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ipsec.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2000-04-20 07:05:58 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2000-04-20 07:05:58 +0000
commitbb5f2a5810d9aa5a18ac0ea315a8ad8f746ff400 (patch)
treec53d7501daab4f29fddb7a458d040b7799b4eea9 /packet-ipsec.c
parent6b7a143a43b87d409bb75c9abda32261c38c4866 (diff)
Have the IPv6 dissector use the same dissector table as the IPv4
dissector. Don't dissect the payload of any fragmented IPv6 packet unless it's the initial fragment (that's what we do for IPv4). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@1882 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-ipsec.c')
-rw-r--r--packet-ipsec.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-ipsec.c b/packet-ipsec.c
index 3475cf852f..8fd2b5d882 100644
--- a/packet-ipsec.c
+++ b/packet-ipsec.c
@@ -1,7 +1,7 @@
/* packet-ipsec.c
* Routines for IPsec/IPComp packet disassembly
*
- * $Id: packet-ipsec.c,v 1.13 2000/04/16 22:46:20 guy Exp $
+ * $Id: packet-ipsec.c,v 1.14 2000/04/20 07:05:55 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -141,7 +141,7 @@ dissect_ah(const u_char *pd, int offset, frame_data *fd, proto_tree *tree)
return advance;
}
-void
+static void
dissect_esp(const u_char *pd, int offset, frame_data *fd, proto_tree *tree)
{
proto_tree *esp_tree;
@@ -178,7 +178,7 @@ dissect_esp(const u_char *pd, int offset, frame_data *fd, proto_tree *tree)
}
}
-void
+static void
dissect_ipcomp(const u_char *pd, int offset, frame_data *fd, proto_tree *tree)
{
proto_tree *ipcomp_tree;