Deleted Added
full compact
ip6_var.h (212155) ip6_var.h (215956)
1/*-
2 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
3 * 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

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

53 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
58 * SUCH DAMAGE.
59 *
60 * @(#)ip_var.h 8.1 (Berkeley) 6/10/93
1/*-
2 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
3 * 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

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

53 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
54 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
55 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
56 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
57 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
58 * SUCH DAMAGE.
59 *
60 * @(#)ip_var.h 8.1 (Berkeley) 6/10/93
61 * $FreeBSD: head/sys/netinet6/ip6_var.h 212155 2010-09-02 17:43:44Z bz $
61 * $FreeBSD: head/sys/netinet6/ip6_var.h 215956 2010-11-27 21:51:39Z brucec $
62 */
63
64#ifndef _NETINET6_IP6_VAR_H_
65#define _NETINET6_IP6_VAR_H_
66
67/*
68 * IP6 reassembly queue structure. Each fragment
69 * being reassembled is attached to one of these structures.

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

204 u_quad_t ip6s_rawout; /* total raw ip packets generated */
205 u_quad_t ip6s_badscope; /* scope error */
206 u_quad_t ip6s_notmember; /* don't join this multicast group */
207 u_quad_t ip6s_nxthist[256]; /* next header history */
208 u_quad_t ip6s_m1; /* one mbuf */
209 u_quad_t ip6s_m2m[32]; /* two or more mbuf */
210 u_quad_t ip6s_mext1; /* one ext mbuf */
211 u_quad_t ip6s_mext2m; /* two or more ext mbuf */
62 */
63
64#ifndef _NETINET6_IP6_VAR_H_
65#define _NETINET6_IP6_VAR_H_
66
67/*
68 * IP6 reassembly queue structure. Each fragment
69 * being reassembled is attached to one of these structures.

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

204 u_quad_t ip6s_rawout; /* total raw ip packets generated */
205 u_quad_t ip6s_badscope; /* scope error */
206 u_quad_t ip6s_notmember; /* don't join this multicast group */
207 u_quad_t ip6s_nxthist[256]; /* next header history */
208 u_quad_t ip6s_m1; /* one mbuf */
209 u_quad_t ip6s_m2m[32]; /* two or more mbuf */
210 u_quad_t ip6s_mext1; /* one ext mbuf */
211 u_quad_t ip6s_mext2m; /* two or more ext mbuf */
212 u_quad_t ip6s_exthdrtoolong; /* ext hdr are not continuous */
212 u_quad_t ip6s_exthdrtoolong; /* ext hdr are not contiguous */
213 u_quad_t ip6s_nogif; /* no match gif found */
214 u_quad_t ip6s_toomanyhdr; /* discarded due to too many headers */
215
216 /*
217 * statistics for improvement of the source address selection
218 * algorithm:
219 * XXX: hardcoded 16 = # of ip6 multicast scope types + 1
220 */

--- 224 unchanged lines hidden ---
213 u_quad_t ip6s_nogif; /* no match gif found */
214 u_quad_t ip6s_toomanyhdr; /* discarded due to too many headers */
215
216 /*
217 * statistics for improvement of the source address selection
218 * algorithm:
219 * XXX: hardcoded 16 = # of ip6 multicast scope types + 1
220 */

--- 224 unchanged lines hidden ---