Deleted Added
full compact
tun.c (78410) tun.c (81634)
1/*-
2 * Copyright (c) 1997 Brian Somers <brian@Awfulhak.org>
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

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 1997 Brian Somers <brian@Awfulhak.org>
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

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

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/usr.sbin/ppp/tun.c 78410 2001-06-18 14:59:36Z brian $
26 * $FreeBSD: head/usr.sbin/ppp/tun.c 81634 2001-08-14 16:05:52Z brian $
27 */
28
29#include <sys/param.h>
30
31#include <sys/socket.h> /* For IFF_ defines */
32#ifndef __FreeBSD__
33#include <net/if.h> /* For IFF_ defines */
34#endif

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

58#include "timer.h"
59#include "lqr.h"
60#include "hdlc.h"
61#include "defs.h"
62#include "fsm.h"
63#include "throughput.h"
64#include "iplist.h"
65#include "slcompress.h"
27 */
28
29#include <sys/param.h>
30
31#include <sys/socket.h> /* For IFF_ defines */
32#ifndef __FreeBSD__
33#include <net/if.h> /* For IFF_ defines */
34#endif

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

58#include "timer.h"
59#include "lqr.h"
60#include "hdlc.h"
61#include "defs.h"
62#include "fsm.h"
63#include "throughput.h"
64#include "iplist.h"
65#include "slcompress.h"
66#include "ncpaddr.h"
67#include "ip.h"
66#include "ipcp.h"
67#include "filter.h"
68#include "descriptor.h"
69#include "lcp.h"
70#include "ccp.h"
71#include "link.h"
72#include "mp.h"
73#include "iface.h"
74#ifndef NORADIUS
75#include "radius.h"
76#endif
68#include "ipcp.h"
69#include "filter.h"
70#include "descriptor.h"
71#include "lcp.h"
72#include "ccp.h"
73#include "link.h"
74#include "mp.h"
75#include "iface.h"
76#ifndef NORADIUS
77#include "radius.h"
78#endif
79#include "ipv6cp.h"
80#include "ncp.h"
77#include "bundle.h"
78#include "tun.h"
79
80void
81tun_configure(struct bundle *bundle)
82{
83#ifdef __NetBSD__
84 struct ifreq ifr;

--- 32 unchanged lines hidden ---
81#include "bundle.h"
82#include "tun.h"
83
84void
85tun_configure(struct bundle *bundle)
86{
87#ifdef __NetBSD__
88 struct ifreq ifr;

--- 32 unchanged lines hidden ---