diff options
author | Guy Harris <guy@alum.mit.edu> | 2000-05-22 18:09:36 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2000-05-22 18:09:36 +0000 |
commit | b23955a89b9bea8aaba06d6a4628ca9a25bc23a1 (patch) | |
tree | 00b69d6f1fb63e48e6ac5738de6a2edb03002589 /packet-ip.c | |
parent | b5a66969464307679a13c65246ae59b17af585c3 (diff) | |
download | wireshark-b23955a89b9bea8aaba06d6a4628ca9a25bc23a1.tar.gz wireshark-b23955a89b9bea8aaba06d6a4628ca9a25bc23a1.tar.bz2 wireshark-b23955a89b9bea8aaba06d6a4628ca9a25bc23a1.zip |
EIGRP over Appletalk and EIGRP over IPX support, from Paul Ionescu.
svn path=/trunk/; revision=1994
Diffstat (limited to 'packet-ip.c')
-rw-r--r-- | packet-ip.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-ip.c b/packet-ip.c index 0cdd138b00..2d9647bfc8 100644 --- a/packet-ip.c +++ b/packet-ip.c @@ -1,7 +1,7 @@ /* packet-ip.c * Routines for IP and miscellaneous IP protocol packet disassembly * - * $Id: packet-ip.c,v 1.85 2000/05/11 08:15:11 gram Exp $ + * $Id: packet-ip.c,v 1.86 2000/05/22 18:09:34 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@zing.org> @@ -55,8 +55,8 @@ #include "llcsaps.h" #include "packet-ip.h" #include "packet-ipsec.h" +#include "packet-eigrp.h" -static void dissect_eigrp(const u_char *, int, frame_data *, proto_tree *); static void dissect_icmp(const u_char *, int, frame_data *, proto_tree *); static void dissect_igmp(const u_char *, int, frame_data *, proto_tree *); @@ -1518,7 +1518,7 @@ static const value_string eigrp_opcode_vals[] = { { 0, NULL } }; -static void +void dissect_eigrp(const u_char *pd, int offset, frame_data *fd, proto_tree *tree) { e_eigrp ih; proto_tree *eigrp_tree; |