Deleted Added
full compact
ip_var.h (193502) ip_var.h (193731)
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

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

22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)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

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

22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 *
29 * @(#)ip_var.h 8.2 (Berkeley) 1/9/95
30 * $FreeBSD: head/sys/netinet/ip_var.h 193502 2009-06-05 13:44:30Z luigi $
30 * $FreeBSD: head/sys/netinet/ip_var.h 193731 2009-06-08 17:15:40Z zec $
31 */
32
33#ifndef _NETINET_IP_VAR_H_
34#define _NETINET_IP_VAR_H_
35
36#include <sys/queue.h>
37#ifdef _KERNEL
38#include <sys/vimage.h>

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

205 ip_rtaddr(struct in_addr, u_int fibnum);
206void ip_savecontrol(struct inpcb *, struct mbuf **, struct ip *,
207 struct mbuf *);
208void ip_slowtimo(void);
209u_int16_t ip_randomid(void);
210int rip_ctloutput(struct socket *, struct sockopt *);
211void rip_ctlinput(int, struct sockaddr *, void *);
212void rip_init(void);
31 */
32
33#ifndef _NETINET_IP_VAR_H_
34#define _NETINET_IP_VAR_H_
35
36#include <sys/queue.h>
37#ifdef _KERNEL
38#include <sys/vimage.h>

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

205 ip_rtaddr(struct in_addr, u_int fibnum);
206void ip_savecontrol(struct inpcb *, struct mbuf **, struct ip *,
207 struct mbuf *);
208void ip_slowtimo(void);
209u_int16_t ip_randomid(void);
210int rip_ctloutput(struct socket *, struct sockopt *);
211void rip_ctlinput(int, struct sockaddr *, void *);
212void rip_init(void);
213#ifdef VIMAGE
214void rip_destroy(void);
215#endif
213void rip_input(struct mbuf *, int);
214int rip_output(struct mbuf *, struct socket *, u_long);
215void ipip_input(struct mbuf *, int);
216void rsvp_input(struct mbuf *, int);
217int ip_rsvp_init(struct socket *);
218int ip_rsvp_done(void);
219extern int (*ip_rsvp_vif)(struct socket *, struct sockopt *);
220extern void (*ip_rsvp_force_done)(struct socket *);

--- 16 unchanged lines hidden ---
216void rip_input(struct mbuf *, int);
217int rip_output(struct mbuf *, struct socket *, u_long);
218void ipip_input(struct mbuf *, int);
219void rsvp_input(struct mbuf *, int);
220int ip_rsvp_init(struct socket *);
221int ip_rsvp_done(void);
222extern int (*ip_rsvp_vif)(struct socket *, struct sockopt *);
223extern void (*ip_rsvp_force_done)(struct socket *);

--- 16 unchanged lines hidden ---