etc/services - sync with NetBSD-8
[minix.git] / external / bsd / tcpdump / dist / ipproto.h
blob3b219babbb1ca8fbd7020814f33282bbf5715c6e
1 /*
2 * Copyright (c) 1982, 1986, 1990, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the University nor the names of its contributors
14 * may be used to endorse or promote products derived from this software
15 * without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
29 * From:
30 * @(#)in.h 8.3 (Berkeley) 1/3/94
31 * $FreeBSD: src/sys/netinet/in.h,v 1.38.2.3 1999/08/29 16:29:34 peter Exp $
34 extern const struct tok ipproto_values[];
36 #ifndef IPPROTO_IP
37 #define IPPROTO_IP 0 /* dummy for IP */
38 #endif
39 #ifndef IPPROTO_HOPOPTS
40 #define IPPROTO_HOPOPTS 0 /* IPv6 hop-by-hop options */
41 #endif
42 #ifndef IPPROTO_ICMP
43 #define IPPROTO_ICMP 1 /* control message protocol */
44 #endif
45 #ifndef IPPROTO_IGMP
46 #define IPPROTO_IGMP 2 /* group mgmt protocol */
47 #endif
48 #ifndef IPPROTO_IPV4
49 #define IPPROTO_IPV4 4
50 #endif
51 #ifndef IPPROTO_TCP
52 #define IPPROTO_TCP 6 /* tcp */
53 #endif
54 #ifndef IPPROTO_EGP
55 #define IPPROTO_EGP 8 /* exterior gateway protocol */
56 #endif
57 #ifndef IPPROTO_PIGP
58 #define IPPROTO_PIGP 9
59 #endif
60 #ifndef IPPROTO_UDP
61 #define IPPROTO_UDP 17 /* user datagram protocol */
62 #endif
63 #ifndef IPPROTO_DCCP
64 #define IPPROTO_DCCP 33 /* datagram congestion control protocol */
65 #endif
66 #ifndef IPPROTO_IPV6
67 #define IPPROTO_IPV6 41
68 #endif
69 #ifndef IPPROTO_ROUTING
70 #define IPPROTO_ROUTING 43 /* IPv6 routing header */
71 #endif
72 #ifndef IPPROTO_FRAGMENT
73 #define IPPROTO_FRAGMENT 44 /* IPv6 fragmentation header */
74 #endif
75 #ifndef IPPROTO_RSVP
76 #define IPPROTO_RSVP 46 /* resource reservation */
77 #endif
78 #ifndef IPPROTO_GRE
79 #define IPPROTO_GRE 47 /* General Routing Encap. */
80 #endif
81 #ifndef IPPROTO_ESP
82 #define IPPROTO_ESP 50 /* SIPP Encap Sec. Payload */
83 #endif
84 #ifndef IPPROTO_AH
85 #define IPPROTO_AH 51 /* SIPP Auth Header */
86 #endif
87 #ifndef IPPROTO_MOBILE
88 #define IPPROTO_MOBILE 55
89 #endif
90 #ifndef IPPROTO_ICMPV6
91 #define IPPROTO_ICMPV6 58 /* ICMPv6 */
92 #endif
93 #ifndef IPPROTO_NONE
94 #define IPPROTO_NONE 59 /* IPv6 no next header */
95 #endif
96 #ifndef IPPROTO_DSTOPTS
97 #define IPPROTO_DSTOPTS 60 /* IPv6 destination options */
98 #endif
99 #ifndef IPPROTO_MOBILITY_OLD
101 * The current Protocol Numbers list says that the IP protocol number for
102 * mobility headers is 135; it cites draft-ietf-mobileip-ipv6-24, but
103 * that draft doesn't actually give a number.
105 * It appears that 62 used to be used, even though that's assigned to
106 * a protocol called CFTP; however, the only reference for CFTP is a
107 * Network Message from BBN back in 1982, so, for now, we support 62,
108 * aas well as 135, as a protocol number for mobility headers.
110 #define IPPROTO_MOBILITY_OLD 62
111 #endif
112 #ifndef IPPROTO_ND
113 #define IPPROTO_ND 77 /* Sun net disk proto (temp.) */
114 #endif
115 #ifndef IPPROTO_EIGRP
116 #define IPPROTO_EIGRP 88 /* Cisco/GXS IGRP */
117 #endif
118 #ifndef IPPROTO_OSPF
119 #define IPPROTO_OSPF 89
120 #endif
121 #ifndef IPPROTO_PIM
122 #define IPPROTO_PIM 103
123 #endif
124 #ifndef IPPROTO_IPCOMP
125 #define IPPROTO_IPCOMP 108
126 #endif
127 #ifndef IPPROTO_VRRP
128 #define IPPROTO_VRRP 112
129 #endif
130 #ifndef IPPROTO_CARP
131 #define IPPROTO_CARP 112
132 #endif
133 #ifndef IPPROTO_PGM
134 #define IPPROTO_PGM 113
135 #endif
136 #ifndef IPPROTO_SCTP
137 #define IPPROTO_SCTP 132
138 #endif
139 #ifndef IPPROTO_MOBILITY
140 #define IPPROTO_MOBILITY 135
141 #endif