Deleted Added
full compact
hdlc.c (43693) hdlc.c (43888)
1/*
2 * PPP High Level Link Control (HDLC) Module
3 *
4 * Written by Toshiharu OHNO (tony-o@iij.ad.jp)
5 *
6 * Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd.
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 the Internet Initiative Japan, Inc. The name of the
14 * IIJ 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 * PPP High Level Link Control (HDLC) Module
3 *
4 * Written by Toshiharu OHNO (tony-o@iij.ad.jp)
5 *
6 * Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd.
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 the Internet Initiative Japan, Inc. The name of the
14 * IIJ 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 * $Id: hdlc.c,v 1.37 1999/01/28 01:56:32 brian Exp $
20 * $Id: hdlc.c,v 1.38 1999/02/06 02:54:45 brian Exp $
21 *
22 * TODO:
23 */
24#include <sys/param.h>
25#include <netinet/in.h>
26#include <netinet/in_systm.h>
27#include <netinet/ip.h>
28#include <sys/un.h>

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

43#include "iplist.h"
44#include "throughput.h"
45#include "slcompress.h"
46#include "ipcp.h"
47#include "ip.h"
48#include "vjcomp.h"
49#include "auth.h"
50#include "pap.h"
21 *
22 * TODO:
23 */
24#include <sys/param.h>
25#include <netinet/in.h>
26#include <netinet/in_systm.h>
27#include <netinet/ip.h>
28#include <sys/un.h>

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

43#include "iplist.h"
44#include "throughput.h"
45#include "slcompress.h"
46#include "ipcp.h"
47#include "ip.h"
48#include "vjcomp.h"
49#include "auth.h"
50#include "pap.h"
51#include "chap.h"
52#include "lcp.h"
53#include "async.h"
54#include "ccp.h"
55#include "link.h"
56#include "descriptor.h"
51#include "lcp.h"
52#include "async.h"
53#include "ccp.h"
54#include "link.h"
55#include "descriptor.h"
56#include "chap.h"
57#include "physical.h"
58#include "prompt.h"
59#include "chat.h"
60#include "mp.h"
61#include "cbcp.h"
62#include "datalink.h"
63#include "filter.h"
64#ifndef NORADIUS

--- 586 unchanged lines hidden ---
57#include "physical.h"
58#include "prompt.h"
59#include "chat.h"
60#include "mp.h"
61#include "cbcp.h"
62#include "datalink.h"
63#include "filter.h"
64#ifndef NORADIUS

--- 586 unchanged lines hidden ---