Deleted Added
full compact
arp.c (80730) arp.c (81634)
1/*
2 * sys-bsd.c - System-dependent procedures for setting up
3 * PPP interfaces on bsd-4.4-ish systems (including 386BSD, NetBSD, etc.)
4 *
5 * Copyright (c) 1989 Carnegie Mellon University.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms are permitted
9 * provided that the above copyright notice and this paragraph are
10 * duplicated in all such forms and that any documentation,
11 * advertising materials, and other materials related to such
12 * distribution and use acknowledge that the software was developed
13 * by Carnegie Mellon University. The name of the
14 * University may not be used to endorse or promote products derived
15 * from this software without specific prior written permission.
16 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
18 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
19 *
1/*
2 * sys-bsd.c - System-dependent procedures for setting up
3 * PPP interfaces on bsd-4.4-ish systems (including 386BSD, NetBSD, etc.)
4 *
5 * Copyright (c) 1989 Carnegie Mellon University.
6 * All rights reserved.
7 *
8 * Redistribution and use in source and binary forms are permitted
9 * provided that the above copyright notice and this paragraph are
10 * duplicated in all such forms and that any documentation,
11 * advertising materials, and other materials related to such
12 * distribution and use acknowledge that the software was developed
13 * by Carnegie Mellon University. The name of the
14 * University may not be used to endorse or promote products derived
15 * from this software without specific prior written permission.
16 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
18 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
19 *
20 * $FreeBSD: head/usr.sbin/ppp/arp.c 80730 2001-07-31 15:19:07Z brian $
20 * $FreeBSD: head/usr.sbin/ppp/arp.c 81634 2001-08-14 16:05:52Z brian $
21 *
22 */
23
24/*
25 * TODO:
26 */
27
28#include <sys/param.h>

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

52#include "timer.h"
53#include "fsm.h"
54#include "defs.h"
55#include "iplist.h"
56#include "throughput.h"
57#include "slcompress.h"
58#include "lqr.h"
59#include "hdlc.h"
21 *
22 */
23
24/*
25 * TODO:
26 */
27
28#include <sys/param.h>

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

52#include "timer.h"
53#include "fsm.h"
54#include "defs.h"
55#include "iplist.h"
56#include "throughput.h"
57#include "slcompress.h"
58#include "lqr.h"
59#include "hdlc.h"
60#include "ncpaddr.h"
60#include "ipcp.h"
61#include "ipcp.h"
61#include "filter.h"
62#include "ipv6cp.h"
62#include "descriptor.h"
63#include "lcp.h"
64#include "ccp.h"
65#include "link.h"
66#include "mp.h"
63#include "descriptor.h"
64#include "lcp.h"
65#include "ccp.h"
66#include "link.h"
67#include "mp.h"
68#include "ncp.h"
69#include "filter.h"
67#ifndef NORADIUS
68#include "radius.h"
69#endif
70#include "bundle.h"
71#include "iface.h"
72#include "arp.h"
73
74/*

--- 240 unchanged lines hidden ---
70#ifndef NORADIUS
71#include "radius.h"
72#endif
73#include "bundle.h"
74#include "iface.h"
75#include "arp.h"
76
77/*

--- 240 unchanged lines hidden ---