Deleted Added
full compact
route6.c (195699) route6.c (196019)
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

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

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 * $KAME: route6.c,v 1.24 2001/03/14 03:07:05 itojun Exp $
30 */
31
32#include <sys/cdefs.h>
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

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

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 * $KAME: route6.c,v 1.24 2001/03/14 03:07:05 itojun Exp $
30 */
31
32#include <sys/cdefs.h>
33__FBSDID("$FreeBSD: head/sys/netinet6/route6.c 195699 2009-07-14 22:48:30Z rwatson $");
33__FBSDID("$FreeBSD: head/sys/netinet6/route6.c 196019 2009-08-01 19:26:27Z rwatson $");
34
35#include "opt_inet.h"
36#include "opt_inet6.h"
37
38#include <sys/param.h>
39#include <sys/mbuf.h>
40#include <sys/socket.h>
41#include <sys/systm.h>
42#include <sys/queue.h>
34
35#include "opt_inet.h"
36#include "opt_inet6.h"
37
38#include <sys/param.h>
39#include <sys/mbuf.h>
40#include <sys/socket.h>
41#include <sys/systm.h>
42#include <sys/queue.h>
43#include <sys/vimage.h>
44
45#include <net/if.h>
46
47#include <netinet/in.h>
48#include <netinet6/in6_var.h>
49#include <netinet/ip6.h>
50#include <netinet6/ip6_var.h>
51#include <netinet6/scope6_var.h>

--- 59 unchanged lines hidden ---
43
44#include <net/if.h>
45
46#include <netinet/in.h>
47#include <netinet6/in6_var.h>
48#include <netinet/ip6.h>
49#include <netinet6/ip6_var.h>
50#include <netinet6/scope6_var.h>

--- 59 unchanged lines hidden ---