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
This commit is contained in:
Paul Traina 1996-09-15 17:55:09 +00:00
parent dd106ca742
commit 0ca3c3e0f8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=18308

View File

@ -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: