Deleted Added
full compact
ccp.h (22997) ccp.h (26516)
1/*
2 * Written by Toshiharu OHNO (tony-o@iij.ad.jp)
3 *
4 * Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd.
5 *
6 * Redistribution and use in source and binary forms are permitted
7 * provided that the above copyright notice and this paragraph are
8 * duplicated in all such forms and that any documentation,
9 * advertising materials, and other materials related to such
10 * distribution and use acknowledge that the software was developed
11 * by the Internet Initiative Japan. The name of the
12 * IIJ may not be used to endorse or promote products derived
13 * from this software without specific prior written permission.
14 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
16 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
17 *
1/*
2 * Written by Toshiharu OHNO (tony-o@iij.ad.jp)
3 *
4 * Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd.
5 *
6 * Redistribution and use in source and binary forms are permitted
7 * provided that the above copyright notice and this paragraph are
8 * duplicated in all such forms and that any documentation,
9 * advertising materials, and other materials related to such
10 * distribution and use acknowledge that the software was developed
11 * by the Internet Initiative Japan. The name of the
12 * IIJ may not be used to endorse or promote products derived
13 * from this software without specific prior written permission.
14 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
15 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
16 * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
17 *
18 * $Id$
18 * $Id: ccp.h,v 1.5 1997/02/22 16:10:03 peter Exp $
19 *
20 * TODO:
21 */
22
23#ifndef _CCP_H_
24#define _CCP_H_
25
26#define CCP_MAXCODE CODE_RESETACK

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

44 u_long my_reject; /* Request codes I have rejected */
45
46 u_long orgout, compout;
47 u_long orgin, compin;
48};
49
50extern struct ccpstate CcpInfo;
51
19 *
20 * TODO:
21 */
22
23#ifndef _CCP_H_
24#define _CCP_H_
25
26#define CCP_MAXCODE CODE_RESETACK

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

44 u_long my_reject; /* Request codes I have rejected */
45
46 u_long orgout, compout;
47 u_long orgin, compin;
48};
49
50extern struct ccpstate CcpInfo;
51
52void CcpRecvResetReq __P((struct fsm *));
53void CcpSendResetReq __P((struct fsm *));
54void CcpInput __P((struct mbuf *));
55void CcpUp __P((void));
56void CcpOpen __P((void));
57void CcpInit __P((void));
52void CcpRecvResetReq(struct fsm *);
53void CcpSendResetReq(struct fsm *);
54void CcpInput(struct mbuf *);
55void CcpUp(void);
56void CcpOpen(void);
57void CcpInit(void);
58#endif
58#endif