Deleted Added
full compact
ip6_mroute.c (95023) ip6_mroute.c (95759)
1/* $FreeBSD: head/sys/netinet6/ip6_mroute.c 95023 2002-04-19 04:46:24Z suz $ */
1/* $FreeBSD: head/sys/netinet6/ip6_mroute.c 95759 2002-04-30 01:54:54Z tanimura $ */
2/* $KAME: ip6_mroute.c,v 1.58 2001/12/18 02:36:31 itojun Exp $ */
3
4/*
5 * Copyright (C) 1998 WIDE Project.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions

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

44 *
45 * MROUTING Revision: 3.5.1.2 + PIM-SMv2 (pimd) Support
46 */
47
48#include "opt_inet.h"
49#include "opt_inet6.h"
50
51#include <sys/param.h>
2/* $KAME: ip6_mroute.c,v 1.58 2001/12/18 02:36:31 itojun Exp $ */
3
4/*
5 * Copyright (C) 1998 WIDE Project.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions

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

44 *
45 * MROUTING Revision: 3.5.1.2 + PIM-SMv2 (pimd) Support
46 */
47
48#include "opt_inet.h"
49#include "opt_inet6.h"
50
51#include <sys/param.h>
52#include <sys/systm.h>
53#include <sys/callout.h>
52#include <sys/callout.h>
53#include <sys/errno.h>
54#include <sys/kernel.h>
55#include <sys/lock.h>
54#include <sys/malloc.h>
55#include <sys/mbuf.h>
56#include <sys/malloc.h>
57#include <sys/mbuf.h>
58#include <sys/protosw.h>
59#include <sys/signalvar.h>
56#include <sys/socket.h>
57#include <sys/socketvar.h>
58#include <sys/sockio.h>
60#include <sys/socket.h>
61#include <sys/socketvar.h>
62#include <sys/sockio.h>
59#include <sys/protosw.h>
60#include <sys/errno.h>
61#include <sys/time.h>
62#include <sys/kernel.h>
63#include <sys/sx.h>
63#include <sys/syslog.h>
64#include <sys/syslog.h>
65#include <sys/systm.h>
66#include <sys/time.h>
64
65#include <net/if.h>
67
68#include <net/if.h>
66#include <net/route.h>
67#include <net/raw_cb.h>
69#include <net/raw_cb.h>
70#include <net/route.h>
68
69#include <netinet/in.h>
70#include <netinet/in_var.h>
71
72#include <netinet/ip6.h>
73#include <netinet6/ip6_var.h>
74#include <netinet6/ip6_mroute.h>
75#include <netinet6/pim6.h>

--- 1736 unchanged lines hidden ---
71
72#include <netinet/in.h>
73#include <netinet/in_var.h>
74
75#include <netinet/ip6.h>
76#include <netinet6/ip6_var.h>
77#include <netinet6/ip6_mroute.h>
78#include <netinet6/pim6.h>

--- 1736 unchanged lines hidden ---