Lines Matching defs:lcp

49 struct lcp {  struct
50 struct fsm fsm; /* The finite state machine */
51 u_int16_t his_mru; /* Peers maximum packet size */
52 u_int16_t his_mrru; /* Peers maximum reassembled packet size (MP) */
53 u_int32_t his_accmap; /* Peeers async char control map */
54 u_int32_t his_magic; /* Peers magic number */
55 u_int32_t his_lqrperiod; /* Peers LQR frequency (100ths of seconds) */
56 u_short his_auth; /* Peer wants this type of authentication */
57 u_char his_authtype; /* Fifth octet of REQ/NAK/REJ */
58 struct callback his_callback; /* Peer wants callback ? */
59 unsigned his_shortseq : 1; /* Peer would like only 12bit seqs (MP) */
60 unsigned his_protocomp : 1; /* Does peer do Protocol field compression */
61 unsigned his_acfcomp : 1; /* Does peer do addr & cntrl fld compression */
62 unsigned mru_req : 1; /* Has the peer requested an MRU */
64 u_short want_mru; /* Our maximum packet size */
65 u_short want_mrru; /* Our maximum reassembled packet size (MP) */
66 u_int32_t want_accmap; /* Our async char control map */
67 u_int32_t want_magic; /* Our magic number */
68 u_int32_t want_lqrperiod; /* Our LQR frequency (100ths of seconds) */
69 u_short want_auth; /* We want this type of authentication */
70 u_char want_authtype; /* Fifth octet of REQ/NAK/REJ */
71 struct callback want_callback;/* We want callback ? */
72 unsigned want_shortseq : 1; /* I'd like only 12bit seqs (MP) */
73 unsigned want_protocomp : 1; /* Do we do protocol field compression */
74 unsigned want_acfcomp : 1; /* Do we do addr & cntrl fld compression */
76 u_int32_t his_reject; /* Request codes rejected by peer */
77 u_int32_t my_reject; /* Request codes I have rejected */
79 u_short auth_iwait; /* I must authenticate to the peer */
80 u_short auth_ineed; /* I require that the peer authenticates */
82 int LcpFailedMagic; /* Number of `magic is same' errors */
84 struct {
105 } cfg;