Deleted Added
full compact
tun.c (89422) tun.c (96582)
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 89422 2002-01-16 14:03:52Z brian $
26 * $FreeBSD: head/usr.sbin/ppp/tun.c 96582 2002-05-14 12:55:39Z 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

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

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"
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

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

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"
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"

--- 45 unchanged lines hidden ---
67#include "ipcp.h"
68#include "filter.h"
69#include "descriptor.h"
70#include "lcp.h"
71#include "ccp.h"
72#include "link.h"
73#include "mp.h"
74#include "iface.h"

--- 45 unchanged lines hidden ---