/* packet-udp.c
* Routines for UDP packet disassembly
*
- * $Id: packet-udp.c,v 1.2 1998/09/16 03:22:13 gerald Exp $
+ * $Id: packet-udp.c,v 1.3 1998/09/21 16:16:01 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
/* we should check the source port too (RIP: UDP src and dst port 520) */
dissect_rip(pd, offset, fd, tree);
break;
+ case UDP_PORT_IPX: /* RFC 1234 */
+ dissect_ipx(pd, offset, fd, tree);
+ break;
default:
dissect_data(pd, offset, fd, tree);
}
/* packet.h
* Definitions for packet disassembly structures and routines
*
- * $Id: packet.h,v 1.5 1998/09/17 03:12:28 gerald Exp $
+ * $Id: packet.h,v 1.6 1998/09/21 16:16:00 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
#define UDP_PORT_DNS 53
#define UDP_PORT_BOOTPS 67
+#define UDP_PORT_IPX 213
#define UDP_PORT_RIP 520
/* TCP Ports */