Deleted Added
full compact
ip6_var.h (191672) ip6_var.h (193731)
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 191672 2009-04-29 19:19:13Z bms $
61 * $FreeBSD: head/sys/netinet6/ip6_var.h 193731 2009-06-08 17:15:40Z zec $
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.

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

334struct sockopt;
335
336struct inpcb;
337
338int icmp6_ctloutput __P((struct socket *, struct sockopt *sopt));
339
340struct in6_ifaddr;
341void ip6_init __P((void));
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.

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

334struct sockopt;
335
336struct inpcb;
337
338int icmp6_ctloutput __P((struct socket *, struct sockopt *sopt));
339
340struct in6_ifaddr;
341void ip6_init __P((void));
342#ifdef VIMAGE
343void ip6_destroy __P((void));
344#endif
342void ip6_input __P((struct mbuf *));
343struct in6_ifaddr *ip6_getdstifaddr __P((struct mbuf *));
344void ip6_freepcbopts __P((struct ip6_pktopts *));
345
346int ip6_unknown_opt __P((u_int8_t *, struct mbuf *, int));
347char * ip6_get_prevhdr __P((struct mbuf *, int));
348int ip6_nexthdr __P((struct mbuf *, int, int, int *));
349int ip6_lasthdr __P((struct mbuf *, int, int, int *));

--- 63 unchanged lines hidden ---
345void ip6_input __P((struct mbuf *));
346struct in6_ifaddr *ip6_getdstifaddr __P((struct mbuf *));
347void ip6_freepcbopts __P((struct ip6_pktopts *));
348
349int ip6_unknown_opt __P((u_int8_t *, struct mbuf *, int));
350char * ip6_get_prevhdr __P((struct mbuf *, int));
351int ip6_nexthdr __P((struct mbuf *, int, int, int *));
352int ip6_lasthdr __P((struct mbuf *, int, int, int *));

--- 63 unchanged lines hidden ---