]> The Tcpdump Group git mirrors - tcpdump/blobdiff - print-ip.c
hide multiline output using vflag plus enhanced, ES-IS decoder
[tcpdump] / print-ip.c
index a94ae30e5e4ae724ba31830ae780ef170243b6e1..c88a2076d15d1b86a6079955b897ff0112c9dd36 100644 (file)
@@ -21,7 +21,7 @@
 
 #ifndef lint
 static const char rcsid[] =
-    "@(#) $Header: /tcpdump/master/tcpdump/print-ip.c,v 1.113 2002-09-05 21:25:41 guy Exp $ (LBL)";
+    "@(#) $Header: /tcpdump/master/tcpdump/print-ip.c,v 1.114 2002-10-03 16:00:34 hannes Exp $ (LBL)";
 #endif
 
 #ifdef HAVE_CONFIG_H
@@ -549,6 +549,12 @@ again:
                        break;
 #endif /*INET6*/
 
+#ifndef IPPROTO_RSVP
+#define IPPROTO_RSVP 46
+#endif
+               case IPPROTO_RSVP:
+                       rsvp_print(cp, len);
+                       break;
 
 #ifndef IPPROTO_GRE
 #define IPPROTO_GRE 47
@@ -676,3 +682,4 @@ ipN_print(register const u_char *bp, register u_int length)
 }
 
 
+