diff options
author | hannes <hannes> | 2004-04-30 22:22:04 +0000 |
---|---|---|
committer | hannes <hannes> | 2004-04-30 22:22:04 +0000 |
commit | 8b3d754999dc34c96cde79ee3fb961d8ae5d68b7 (patch) | |
tree | 025160fece94f56ed34761c035123819b7338ad3 /print-ipx.c | |
parent | fc80a87e4c7e921dca5edcf53373f60a76123a41 (diff) | |
download | tcpdump-8b3d754999dc34c96cde79ee3fb961d8ae5d68b7.tar.gz |
-add baseline support for dissecting EIGRP-IP and EIGRP-IPX messages
-FIXME: complete TLV dissection (today we just show the TLV name and
hexdump the TLV value)
Diffstat (limited to 'print-ipx.c')
-rw-r--r-- | print-ipx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/print-ipx.c b/print-ipx.c index 94f17ddf..16173dec 100644 --- a/print-ipx.c +++ b/print-ipx.c @@ -24,7 +24,7 @@ #ifndef lint static const char rcsid[] _U_ = - "@(#) $Header: /tcpdump/master/tcpdump/print-ipx.c,v 1.36 2003-11-16 09:36:25 guy Exp $"; + "@(#) $Header: /tcpdump/master/tcpdump/print-ipx.c,v 1.37 2004-04-30 22:22:05 hannes Exp $"; #endif #ifdef HAVE_CONFIG_H @@ -118,7 +118,7 @@ ipx_decode(const struct ipxHdr *ipx, const u_char *datap, u_int length) #endif break; case IPX_SKT_EIGRP: - (void)printf(" ipx-eigrp %d", length); + eigrp_print(datap,length); break; default: (void)printf(" ipx-#%x %d", dstSkt, length); |