From b4a90e5e8c433a9219f29edcaa158e49d1b4f4c6 Mon Sep 17 00:00:00 2001 From: pst Date: Sun, 15 Sep 1996 17:55:09 +0000 Subject: Here is a patch to make tcpdump recognise IPX packets that is using ETHERNET_II framing. It got lost during the tcpdump upgrade. Submitted by: John.Hay@mikom.csir.co.za --- contrib/tcpdump/print-ether.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'contrib') diff --git a/contrib/tcpdump/print-ether.c b/contrib/tcpdump/print-ether.c index e6820c1..405f495 100644 --- a/contrib/tcpdump/print-ether.c +++ b/contrib/tcpdump/print-ether.c @@ -185,6 +185,10 @@ ether_encap_print(u_short ethertype, const u_char *p, aarp_print(p, length); return (1); + case ETHERTYPE_IPX: + ipx_print(p, length); + return (1); + case ETHERTYPE_LAT: case ETHERTYPE_SCA: case ETHERTYPE_MOPRC: -- cgit v1.1