Deleted Added
full compact
ip6_var.h (266800) ip6_var.h (269699)
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 266800 2014-05-28 12:45:27Z vanhu $
61 * $FreeBSD: head/sys/netinet6/ip6_var.h 269699 2014-08-08 01:57:15Z kevlo $
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.

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

433int frag6_input(struct mbuf **, int *, int);
434void frag6_slowtimo(void);
435void frag6_drain(void);
436
437void rip6_init(void);
438int rip6_input(struct mbuf **, int *, int);
439void rip6_ctlinput(int, struct sockaddr *, void *);
440int rip6_ctloutput(struct socket *, struct sockopt *);
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.

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

433int frag6_input(struct mbuf **, int *, int);
434void frag6_slowtimo(void);
435void frag6_drain(void);
436
437void rip6_init(void);
438int rip6_input(struct mbuf **, int *, int);
439void rip6_ctlinput(int, struct sockaddr *, void *);
440int rip6_ctloutput(struct socket *, struct sockopt *);
441int rip6_output(struct mbuf *, ...);
441int rip6_output(struct mbuf *, struct socket *, ...);
442int rip6_usrreq(struct socket *,
443 int, struct mbuf *, struct mbuf *, struct mbuf *, struct thread *);
444
445int dest6_input(struct mbuf **, int *, int);
446int none_input(struct mbuf **, int *, int);
447
448int in6_selectsrc(struct sockaddr_in6 *, struct ip6_pktopts *,
449 struct inpcb *inp, struct route_in6 *, struct ucred *cred,

--- 13 unchanged lines hidden ---
442int rip6_usrreq(struct socket *,
443 int, struct mbuf *, struct mbuf *, struct mbuf *, struct thread *);
444
445int dest6_input(struct mbuf **, int *, int);
446int none_input(struct mbuf **, int *, int);
447
448int in6_selectsrc(struct sockaddr_in6 *, struct ip6_pktopts *,
449 struct inpcb *inp, struct route_in6 *, struct ucred *cred,

--- 13 unchanged lines hidden ---