Deleted Added
full compact
ip_var.h (122708) ip_var.h (122723)
1/*
2 * Copyright (c) 1982, 1986, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
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

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

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)ip_var.h 8.2 (Berkeley) 1/9/95
1/*
2 * Copyright (c) 1982, 1986, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
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

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

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)ip_var.h 8.2 (Berkeley) 1/9/95
34 * $FreeBSD: head/sys/netinet/ip_var.h 122708 2003-11-14 21:48:57Z andre $
34 * $FreeBSD: head/sys/netinet/ip_var.h 122723 2003-11-15 01:45:56Z andre $
35 */
36
37#ifndef _NETINET_IP_VAR_H_
38#define _NETINET_IP_VAR_H_
39
40#include <sys/queue.h>
41
42/*

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

145struct sockopt;
146
147extern struct ipstat ipstat;
148#ifndef RANDOM_IP_ID
149extern u_short ip_id; /* ip packet ctr, for ids */
150#endif
151extern int ip_defttl; /* default IP ttl */
152extern int ipforwarding; /* ip forwarding */
35 */
36
37#ifndef _NETINET_IP_VAR_H_
38#define _NETINET_IP_VAR_H_
39
40#include <sys/queue.h>
41
42/*

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

145struct sockopt;
146
147extern struct ipstat ipstat;
148#ifndef RANDOM_IP_ID
149extern u_short ip_id; /* ip packet ctr, for ids */
150#endif
151extern int ip_defttl; /* default IP ttl */
152extern int ipforwarding; /* ip forwarding */
153#ifdef IPSTEALTH
154extern int ipstealth; /* stealth forwarding */
155#endif
153extern u_char ip_protox[];
154extern struct socket *ip_rsvpd; /* reservation protocol daemon */
155extern struct socket *ip_mrouter; /* multicast routing daemon */
156extern int (*legal_vif_num)(int);
157extern u_long (*ip_mcast_src)(int);
158extern int rsvp_on;
159extern struct pr_usrreqs rip_usrreqs;
160

--- 54 unchanged lines hidden ---
156extern u_char ip_protox[];
157extern struct socket *ip_rsvpd; /* reservation protocol daemon */
158extern struct socket *ip_mrouter; /* multicast routing daemon */
159extern int (*legal_vif_num)(int);
160extern u_long (*ip_mcast_src)(int);
161extern int rsvp_on;
162extern struct pr_usrreqs rip_usrreqs;
163

--- 54 unchanged lines hidden ---