1998-01-29 00:44:16 +00:00
|
|
|
/*
|
|
|
|
* Written by Toshiharu OHNO (tony-o@iij.ad.jp)
|
|
|
|
*
|
|
|
|
* Copyright (C) 1993, Internet Initiative Japan, Inc. All rights reserverd.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms are permitted
|
|
|
|
* provided that the above copyright notice and this paragraph are
|
|
|
|
* duplicated in all such forms and that any documentation,
|
|
|
|
* advertising materials, and other materials related to such
|
|
|
|
* distribution and use acknowledge that the software was developed
|
|
|
|
* by the Internet Initiative Japan. The name of the
|
|
|
|
* IIJ may not be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
|
|
|
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
|
|
|
|
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
*
|
1998-03-20 19:47:10 +00:00
|
|
|
* $Id: lcp.h,v 1.16.2.14 1998/03/13 21:07:07 brian Exp $
|
1998-01-29 00:44:16 +00:00
|
|
|
*
|
|
|
|
* TODO:
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define REJECTED(p, x) ((p)->his_reject & (1<<(x)))
|
|
|
|
|
1998-02-08 11:05:01 +00:00
|
|
|
struct lcp {
|
1998-01-31 02:48:30 +00:00
|
|
|
struct fsm fsm; /* The finite state machine */
|
1998-01-30 01:33:46 +00:00
|
|
|
u_int16_t his_mru; /* Peers maximum packet size */
|
|
|
|
u_int32_t his_accmap; /* Peeers async char control map */
|
|
|
|
u_int32_t his_magic; /* Peers magic number */
|
|
|
|
u_int32_t his_lqrperiod; /* Peers LQR frequency */
|
|
|
|
int his_protocomp : 1; /* Does peer do Protocol field compression */
|
|
|
|
int his_acfcomp : 1; /* Does peer do addr & cntrl fld compression */
|
|
|
|
u_short his_auth; /* Peer wants this type of authentication */
|
|
|
|
|
|
|
|
u_short want_mru; /* Our maximum packet size */
|
|
|
|
u_int32_t want_accmap; /* Our async char control map */
|
|
|
|
u_int32_t want_magic; /* Our magic number */
|
|
|
|
u_int32_t want_lqrperiod; /* Our LQR frequency */
|
|
|
|
int want_protocomp : 1; /* Do we do protocol field compression */
|
|
|
|
int want_acfcomp : 1; /* Do we do addr & cntrl fld compression */
|
|
|
|
u_short want_auth; /* We want this type of authentication */
|
1998-01-29 00:44:16 +00:00
|
|
|
|
|
|
|
u_int32_t his_reject; /* Request codes rejected by peer */
|
|
|
|
u_int32_t my_reject; /* Request codes I have rejected */
|
|
|
|
|
1998-01-30 01:33:46 +00:00
|
|
|
u_short auth_iwait; /* I must authenticate to the peer */
|
|
|
|
u_short auth_ineed; /* I require that the peer authenticates */
|
|
|
|
|
|
|
|
int LcpFailedMagic; /* Number of `magic is same' errors */
|
1998-01-29 00:44:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define LCP_MAXCODE CODE_DISCREQ
|
|
|
|
|
|
|
|
#define TY_MRU 1 /* Maximum-Receive-Unit */
|
|
|
|
#define TY_ACCMAP 2 /* Async-Control-Character-Map */
|
|
|
|
#define TY_AUTHPROTO 3 /* Authentication-Protocol */
|
|
|
|
#define TY_QUALPROTO 4 /* Quality-Protocol */
|
|
|
|
#define TY_MAGICNUM 5 /* Magic-Number */
|
|
|
|
#define TY_RESERVED 6 /* RESERVED */
|
|
|
|
#define TY_PROTOCOMP 7 /* Protocol-Field-Compression */
|
|
|
|
#define TY_ACFCOMP 8 /* Address-and-Control-Field-Compression */
|
|
|
|
#define TY_FCSALT 9 /* FCS-Alternatives */
|
|
|
|
#define TY_SDP 10 /* Self-Describing-Padding */
|
|
|
|
|
|
|
|
#define MAX_LCP_OPT_LEN 10
|
|
|
|
struct lcp_opt {
|
|
|
|
u_char id;
|
|
|
|
u_char len;
|
|
|
|
u_char data[MAX_LCP_OPT_LEN-2];
|
|
|
|
};
|
|
|
|
|
1998-03-20 19:47:10 +00:00
|
|
|
#define INC_LCP_OPT(ty, length, o) \
|
|
|
|
do { \
|
|
|
|
(o)->id = (ty); \
|
|
|
|
(o)->len = (length); \
|
|
|
|
(o) = (struct lcp_opt *)((char *)(o) + (length)); \
|
|
|
|
} while (0)
|
|
|
|
|
1998-01-29 00:49:32 +00:00
|
|
|
struct physical;
|
1998-01-29 00:44:16 +00:00
|
|
|
|
1998-02-08 11:05:01 +00:00
|
|
|
#define fsm2lcp(fp) (fp->proto == PROTO_LCP ? (struct lcp *)fp : NULL)
|
1998-03-13 00:44:51 +00:00
|
|
|
#define lcp2ccp(lcp) (&link2physical((lcp)->fsm.link)->dl->ccp)
|
1998-02-06 02:24:29 +00:00
|
|
|
|
1998-02-27 01:22:39 +00:00
|
|
|
extern void lcp_Init(struct lcp *, struct bundle *, struct physical *,
|
|
|
|
const struct fsm_parent *);
|
1998-02-21 01:45:26 +00:00
|
|
|
extern void lcp_Setup(struct lcp *, int);
|
|
|
|
|
1998-03-13 21:07:14 +00:00
|
|
|
extern void lcp_SendProtoRej(struct lcp *, u_char *, int);
|
|
|
|
extern int lcp_ReportStatus(struct cmdargs const *);
|
|
|
|
extern void LcpInput(struct lcp *, struct mbuf *);
|