Remove building with NOCRYPTO option
[minix3.git] / external / bsd / tcpdump / dist / ipproto.c
blob40e35a220c2c12dae2ce74f0f104d8ce25977ac3
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.
13 * Original code by Hannes Gredler (hannes@juniper.net)
16 #include <sys/cdefs.h>
17 #ifndef lint
18 __RCSID("$NetBSD: ipproto.c,v 1.4 2014/11/20 03:05:03 christos Exp $");
19 #endif
21 #define NETDISSECT_REWORKED
22 #ifdef HAVE_CONFIG_H
23 #include "config.h"
24 #endif
26 #include <tcpdump-stdinc.h>
28 #include "interface.h"
29 #include "ipproto.h"
31 const struct tok ipproto_values[] = {
32 { IPPROTO_HOPOPTS, "Options" },
33 { IPPROTO_ICMP, "ICMP" },
34 { IPPROTO_IGMP, "IGMP" },
35 { IPPROTO_IPV4, "IPIP" },
36 { IPPROTO_TCP, "TCP" },
37 { IPPROTO_EGP, "EGP" },
38 { IPPROTO_PIGP, "IGRP" },
39 { IPPROTO_UDP, "UDP" },
40 { IPPROTO_DCCP, "DCCP" },
41 { IPPROTO_IPV6, "IPv6" },
42 { IPPROTO_ROUTING, "Routing" },
43 { IPPROTO_FRAGMENT, "Fragment" },
44 { IPPROTO_RSVP, "RSVP" },
45 { IPPROTO_GRE, "GRE" },
46 { IPPROTO_ESP, "ESP" },
47 { IPPROTO_AH, "AH" },
48 { IPPROTO_MOBILE, "Mobile IP" },
49 { IPPROTO_ICMPV6, "ICMPv6" },
50 { IPPROTO_MOBILITY_OLD, "Mobile IP (old)" },
51 { IPPROTO_EIGRP, "EIGRP" },
52 { IPPROTO_OSPF, "OSPF" },
53 { IPPROTO_PIM, "PIM" },
54 { IPPROTO_IPCOMP, "Compressed IP" },
55 { IPPROTO_VRRP, "VRRP" },
56 { IPPROTO_PGM, "PGM" },
57 { IPPROTO_SCTP, "SCTP" },
58 { IPPROTO_MOBILITY, "Mobility" },
59 { IPPROTO_PFSYNC, "PFSYNC" },
60 { IPPROTO_CARP, "CARP" },
61 { 0, NULL }