Deleted Added
full compact
ip.h (285669) ip.h (298995)
1/*-
2 * Copyright (c) 1982, 1986, 1993
3 * The Regents of the University of California.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 14 unchanged lines hidden (view full) ---

23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 * SUCH DAMAGE.
29 *
30 * @(#)ip.h 8.2 (Berkeley) 6/1/94
1/*-
2 * Copyright (c) 1982, 1986, 1993
3 * The Regents of the University of California.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 14 unchanged lines hidden (view full) ---

23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 * SUCH DAMAGE.
29 *
30 * @(#)ip.h 8.2 (Berkeley) 6/1/94
31 * $FreeBSD: head/sys/netinet/ip.h 285669 2015-07-18 06:48:30Z kevlo $
31 * $FreeBSD: head/sys/netinet/ip.h 298995 2016-05-03 18:05:43Z pfg $
32 */
33
34#ifndef _NETINET_IP_H_
35#define _NETINET_IP_H_
36
37#include <sys/cdefs.h>
38
39/*

--- 102 unchanged lines hidden (view full) ---

142#define IPOPT_EOL 0 /* end of option list */
143#define IPOPT_NOP 1 /* no operation */
144
145#define IPOPT_RR 7 /* record packet route */
146#define IPOPT_TS 68 /* timestamp */
147#define IPOPT_SECURITY 130 /* provide s,c,h,tcc */
148#define IPOPT_LSRR 131 /* loose source route */
149#define IPOPT_ESO 133 /* extended security */
32 */
33
34#ifndef _NETINET_IP_H_
35#define _NETINET_IP_H_
36
37#include <sys/cdefs.h>
38
39/*

--- 102 unchanged lines hidden (view full) ---

142#define IPOPT_EOL 0 /* end of option list */
143#define IPOPT_NOP 1 /* no operation */
144
145#define IPOPT_RR 7 /* record packet route */
146#define IPOPT_TS 68 /* timestamp */
147#define IPOPT_SECURITY 130 /* provide s,c,h,tcc */
148#define IPOPT_LSRR 131 /* loose source route */
149#define IPOPT_ESO 133 /* extended security */
150#define IPOPT_CIPSO 134 /* commerical security */
150#define IPOPT_CIPSO 134 /* commercial security */
151#define IPOPT_SATID 136 /* satnet id */
152#define IPOPT_SSRR 137 /* strict source route */
153#define IPOPT_RA 148 /* router alert */
154
155/*
156 * Offsets to fields in options other than EOL and NOP.
157 */
158#define IPOPT_OPTVAL 0 /* option ID */

--- 64 unchanged lines hidden ---
151#define IPOPT_SATID 136 /* satnet id */
152#define IPOPT_SSRR 137 /* strict source route */
153#define IPOPT_RA 148 /* router alert */
154
155/*
156 * Offsets to fields in options other than EOL and NOP.
157 */
158#define IPOPT_OPTVAL 0 /* option ID */

--- 64 unchanged lines hidden ---