Deleted Added
sdiff udiff text old ( 38559 ) new ( 43313 )
full compact
1/*
2 * PPP PAP Module
3 *
4 * Written by Toshiharu OHNO (tony-o@iij.ad.jp)
5 *
6 * Copyright (C) 1993-94, Internet Initiative Japan, Inc.
7 * All rights reserverd.
8 *

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

13 * distribution and use acknowledge that the software was developed
14 * by the Internet Initiative Japan, Inc. The name of the
15 * IIJ may not be used to endorse or promote products derived
16 * from this software without specific prior written permission.
17 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
19 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
20 *
21 * $Id: pap.c,v 1.26 1998/08/07 18:42:50 brian Exp $
22 *
23 * TODO:
24 */
25#include <sys/types.h>
26#include <netinet/in.h>
27#include <netinet/in_systm.h>
28#include <netinet/ip.h>
29#include <sys/un.h>
30
31#include <string.h>
32#include <termios.h>
33

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

48#include "link.h"
49#include "descriptor.h"
50#include "physical.h"
51#include "iplist.h"
52#include "slcompress.h"
53#include "ipcp.h"
54#include "filter.h"
55#include "mp.h"
56#include "bundle.h"
57#include "chat.h"
58#include "chap.h"
59#include "cbcp.h"
60#include "datalink.h"
61
62static const char *papcodes[] = { "???", "REQUEST", "SUCCESS", "FAILURE" };
63

--- 139 unchanged lines hidden ---