Deleted Added
full compact
ip6_var.h (207369) ip6_var.h (212155)
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 207369 2010-04-29 11:52:42Z bz $
61 * $FreeBSD: head/sys/netinet6/ip6_var.h 212155 2010-09-02 17:43:44Z bz $
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.

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

363
364int icmp6_ctloutput __P((struct socket *, struct sockopt *sopt));
365
366struct in6_ifaddr;
367void ip6_init __P((void));
368#ifdef VIMAGE
369void ip6_destroy __P((void));
370#endif
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.

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

363
364int icmp6_ctloutput __P((struct socket *, struct sockopt *sopt));
365
366struct in6_ifaddr;
367void ip6_init __P((void));
368#ifdef VIMAGE
369void ip6_destroy __P((void));
370#endif
371int ip6proto_register(short);
372int ip6proto_unregister(short);
373
371void ip6_input __P((struct mbuf *));
372struct in6_ifaddr *ip6_getdstifaddr __P((struct mbuf *));
373void ip6_freepcbopts __P((struct ip6_pktopts *));
374
375int ip6_unknown_opt __P((u_int8_t *, struct mbuf *, int));
376char * ip6_get_prevhdr __P((struct mbuf *, int));
377int ip6_nexthdr __P((struct mbuf *, int, int, int *));
378int ip6_lasthdr __P((struct mbuf *, int, int, int *));

--- 63 unchanged lines hidden ---
374void ip6_input __P((struct mbuf *));
375struct in6_ifaddr *ip6_getdstifaddr __P((struct mbuf *));
376void ip6_freepcbopts __P((struct ip6_pktopts *));
377
378int ip6_unknown_opt __P((u_int8_t *, struct mbuf *, int));
379char * ip6_get_prevhdr __P((struct mbuf *, int));
380int ip6_nexthdr __P((struct mbuf *, int, int, int *));
381int ip6_lasthdr __P((struct mbuf *, int, int, int *));

--- 63 unchanged lines hidden ---