according to whether they're Ethernet II, 802.3, or 802.2.
*/
#ifndef lint
static const char rcsid[] =
- "@(#) $Header: /tcpdump/master/tcpdump/print-ether.c,v 1.65 2001-07-04 22:03:14 fenner Exp $ (LBL)";
+ "@(#) $Header: /tcpdump/master/tcpdump/print-ether.c,v 1.66 2001-11-25 02:01:47 guy Exp $ (LBL)";
#endif
#ifdef HAVE_CONFIG_H
return (1);
case ETHERTYPE_IPX:
+ printf("(NOV-ETHII) ");
ipx_print(p, length);
return (1);
#ifndef lint
static const char rcsid[] =
- "@(#) $Header: /tcpdump/master/tcpdump/print-llc.c,v 1.43 2001-10-08 21:25:22 fenner Exp $";
+ "@(#) $Header: /tcpdump/master/tcpdump/print-llc.c,v 1.44 2001-11-25 02:01:48 guy Exp $";
#endif
#ifdef HAVE_CONFIG_H
* such as an 802.11 network; this has appeared in at
* least one capture file.)
*/
+ printf("(NOV-802.3) ");
ipx_print(p, length);
return (1);
}
*
* Skip DSAP, LSAP, and control field.
*/
+ printf("(NOV-802.2) ");
p += 3;
length -= 3;
caplen -= 3;