]> The Tcpdump Group git mirrors - tcpdump/commitdiff
IPX socket 0x85be is for Cisco EIGRP over IPX.
authorguy <guy>
Mon, 15 Jan 2001 00:43:59 +0000 (00:43 +0000)
committerguy <guy>
Mon, 15 Jan 2001 00:43:59 +0000 (00:43 +0000)
ipx.h
print-ipx.c

diff --git a/ipx.h b/ipx.h
index d5a2cac1bee5de61ad602d99974b93b74762bc38..21557bd2537850ff390a8cd16876710969b51286 100644 (file)
--- a/ipx.h
+++ b/ipx.h
@@ -1,7 +1,7 @@
 /*
  * IPX protocol formats 
  *
 /*
  * IPX protocol formats 
  *
- * @(#) $Header: /tcpdump/master/tcpdump/ipx.h,v 1.2 2000-10-03 02:54:56 itojun Exp $
+ * @(#) $Header: /tcpdump/master/tcpdump/ipx.h,v 1.3 2001-01-15 00:43:59 guy Exp $
  */
 
 /* well-known sockets */
  */
 
 /* well-known sockets */
@@ -10,6 +10,7 @@
 #define        IPX_SKT_RIP             0x0453
 #define        IPX_SKT_NETBIOS         0x0455
 #define        IPX_SKT_DIAGNOSTICS     0x0456
 #define        IPX_SKT_RIP             0x0453
 #define        IPX_SKT_NETBIOS         0x0455
 #define        IPX_SKT_DIAGNOSTICS     0x0456
+#define IPX_SKT_EIGRP          0x85be  /* Cisco EIGRP over IPX */
 
 /* IPX transport header */
 struct ipxHdr {
 
 /* IPX transport header */
 struct ipxHdr {
index 56d554c59241dbf6841738820cde23a109e5c834..0c4c501fa77ad40e2be6d2ba32bfb9385f931857 100644 (file)
@@ -24,7 +24,7 @@
 
 #ifndef lint
 static const char rcsid[] =
 
 #ifndef lint
 static const char rcsid[] =
-    "@(#) $Header: /tcpdump/master/tcpdump/print-ipx.c,v 1.27 2000-09-29 04:58:41 guy Exp $";
+    "@(#) $Header: /tcpdump/master/tcpdump/print-ipx.c,v 1.28 2001-01-15 00:43:59 guy Exp $";
 #endif
 
 #ifdef HAVE_CONFIG_H
 #endif
 
 #ifdef HAVE_CONFIG_H
@@ -112,6 +112,9 @@ ipx_decode(const struct ipxHdr *ipx, const u_char *datap, u_int length)
       case IPX_SKT_DIAGNOSTICS:
        (void)printf(" ipx-diags %d", length);
        break;
       case IPX_SKT_DIAGNOSTICS:
        (void)printf(" ipx-diags %d", length);
        break;
+      case IPX_SKT_EIGRP:
+       (void)printf(" ipx-eigrp %d", length);
+       break;
       default:
        (void)printf(" ipx-#%x %d", dstSkt, length);
        break;
       default:
        (void)printf(" ipx-#%x %d", dstSkt, length);
        break;