#ifndef lint
static const char rcsid[] =
- "@(#) $Header: /tcpdump/master/tcpdump/print-gre.c,v 1.17 2002-09-20 22:42:21 itojun Exp $ (LBL)";
+ "@(#) $Header: /tcpdump/master/tcpdump/print-gre.c,v 1.18 2002-09-24 23:39:22 hannes Exp $ (LBL)";
#endif
#ifdef HAVE_CONFIG_H
#define GREPROTO_IP 0x0800 /* IP */
#define GREPROTO_PPP 0x880b /* PPTP */
+#define GREPROTO_ISO 0xfefe /* OSI */
/* source route entry types */
#define GRESRE_IP 0x0800 /* IP */
case GREPROTO_IP:
ip_print(bp, len);
break;
+ case GREPROTO_ISO:
+ isoclns_print(bp, len, len, NULL, NULL);
+ break;
default:
printf("gre-proto-0x%x", prot);
}