1 /* 2 * Redistribution and use in source and binary forms, with or without 3 * modification, are permitted provided that: (1) source code 4 * distributions retain the above copyright notice and this paragraph 5 * in its entirety, and (2) distributions including binary code include 6 * the above copyright notice and this paragraph in its entirety in 7 * the documentation or other materials provided with the distribution. 8 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND 9 * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT 10 * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 11 * FOR A PARTICULAR PURPOSE. 12 * 13 * Original code by Hannes Gredler (hannes (at) juniper.net) 14 */ 15 16 #define NETDISSECT_REWORKED 17 #ifdef HAVE_CONFIG_H 18 #include "config.h" 19 #endif 20 21 #include <tcpdump-stdinc.h> 22 23 #include "interface.h" 24 #include "ipproto.h" 25 26 const struct tok ipproto_values[] = { 27 { IPPROTO_HOPOPTS, "Options" }, 28 { IPPROTO_ICMP, "ICMP" }, 29 { IPPROTO_IGMP, "IGMP" }, 30 { IPPROTO_IPV4, "IPIP" }, 31 { IPPROTO_TCP, "TCP" }, 32 { IPPROTO_EGP, "EGP" }, 33 { IPPROTO_PIGP, "IGRP" }, 34 { IPPROTO_UDP, "UDP" }, 35 { IPPROTO_DCCP, "DCCP" }, 36 { IPPROTO_IPV6, "IPv6" }, 37 { IPPROTO_ROUTING, "Routing" }, 38 { IPPROTO_FRAGMENT, "Fragment" }, 39 { IPPROTO_RSVP, "RSVP" }, 40 { IPPROTO_GRE, "GRE" }, 41 { IPPROTO_ESP, "ESP" }, 42 { IPPROTO_AH, "AH" }, 43 { IPPROTO_MOBILE, "Mobile IP" }, 44 { IPPROTO_ICMPV6, "ICMPv6" }, 45 { IPPROTO_MOBILITY_OLD, "Mobile IP (old)" }, 46 { IPPROTO_EIGRP, "EIGRP" }, 47 { IPPROTO_OSPF, "OSPF" }, 48 { IPPROTO_PIM, "PIM" }, 49 { IPPROTO_IPCOMP, "Compressed IP" }, 50 { IPPROTO_VRRP, "VRRP" }, 51 { IPPROTO_PGM, "PGM" }, 52 { IPPROTO_SCTP, "SCTP" }, 53 { IPPROTO_MOBILITY, "Mobility" }, 54 { IPPROTO_CARP, "CARP" }, 55 { 0, NULL } 56 }; 57 58