OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:lcp_options
(Results
1 - 3
of
3
) sorted by null
/external/ppp/pppd/
lcp.h
70
* The state of options is described by an
lcp_options
structure.
72
typedef struct
lcp_options
{
struct
97
}
lcp_options
;
typedef in typeref:struct:lcp_options
100
extern
lcp_options
lcp_wantoptions[];
101
extern
lcp_options
lcp_gotoptions[];
102
extern
lcp_options
lcp_allowoptions[];
103
extern
lcp_options
lcp_hisoptions[];
lcp.c
191
lcp_options
lcp_wantoptions[NUM_PPP]; /* Options that we want to request */
192
lcp_options
lcp_gotoptions[NUM_PPP]; /* Options that peer ack'd */
193
lcp_options
lcp_allowoptions[NUM_PPP]; /* Options we allow peer to request */
194
lcp_options
lcp_hisoptions[NUM_PPP]; /* Options that we ack'd */
303
BZERO((char *) &lcp_wantoptions[0], sizeof (struct
lcp_options
));
304
BZERO((char *) &lcp_allowoptions[0], sizeof (struct
lcp_options
));
340
lcp_options
*wo = &lcp_wantoptions[unit];
341
lcp_options
*ao = &lcp_allowoptions[unit];
380
lcp_options
*wo = &lcp_wantoptions[unit];
425
lcp_options
*wo = &lcp_wantoptions[unit]
[
all
...]
auth.c
706
lcp_options
*wo = &lcp_wantoptions[unit];
707
lcp_options
*go = &lcp_gotoptions[unit];
708
lcp_options
*ho = &lcp_hisoptions[unit];
785
lcp_options
*go = &lcp_gotoptions[unit];
1192
lcp_options
*wo = &lcp_wantoptions[0];
[
all
...]
Completed in 41 milliseconds