Symbol: ccp_options
usr.sbin/pppd/ccp.c
100
static char *method_name(ccp_options *, ccp_options *);
usr.sbin/pppd/ccp.c
150
memset(&ccp_wantoptions[unit], 0, sizeof(ccp_options));
usr.sbin/pppd/ccp.c
151
memset(&ccp_gotoptions[unit], 0, sizeof(ccp_options));
usr.sbin/pppd/ccp.c
152
memset(&ccp_allowoptions[unit], 0, sizeof(ccp_options));
usr.sbin/pppd/ccp.c
153
memset(&ccp_hisoptions[unit], 0, sizeof(ccp_options));
usr.sbin/pppd/ccp.c
293
ccp_options *go = &ccp_gotoptions[f->unit];
usr.sbin/pppd/ccp.c
350
ccp_options *go = &ccp_gotoptions[f->unit];
usr.sbin/pppd/ccp.c
365
ccp_options *go = &ccp_gotoptions[f->unit];
usr.sbin/pppd/ccp.c
453
ccp_options *go = &ccp_gotoptions[f->unit];
usr.sbin/pppd/ccp.c
523
ccp_options *go = &ccp_gotoptions[f->unit];
usr.sbin/pppd/ccp.c
524
ccp_options no; /* options we've seen already */
usr.sbin/pppd/ccp.c
525
ccp_options try; /* options to ask for next time */
usr.sbin/pppd/ccp.c
589
ccp_options *go = &ccp_gotoptions[f->unit];
usr.sbin/pppd/ccp.c
590
ccp_options try; /* options to request next time */
usr.sbin/pppd/ccp.c
667
ccp_options *ho = &ccp_hisoptions[f->unit];
usr.sbin/pppd/ccp.c
668
ccp_options *ao = &ccp_allowoptions[f->unit];
usr.sbin/pppd/ccp.c
674
memset(ho, 0, sizeof(ccp_options));
usr.sbin/pppd/ccp.c
81
ccp_options ccp_wantoptions[NUM_PPP]; /* what to request the peer to use */
usr.sbin/pppd/ccp.c
82
ccp_options ccp_gotoptions[NUM_PPP]; /* what the peer agreed to do */
usr.sbin/pppd/ccp.c
83
ccp_options ccp_allowoptions[NUM_PPP]; /* what we'll agree to do */
usr.sbin/pppd/ccp.c
837
method_name(ccp_options *opt, ccp_options *opt2)
usr.sbin/pppd/ccp.c
84
ccp_options ccp_hisoptions[NUM_PPP]; /* what we agreed to do */
usr.sbin/pppd/ccp.c
879
ccp_options *go = &ccp_gotoptions[f->unit];
usr.sbin/pppd/ccp.c
880
ccp_options *ho = &ccp_hisoptions[f->unit];
usr.sbin/pppd/ccp.h
51
extern ccp_options ccp_wantoptions[];
usr.sbin/pppd/ccp.h
52
extern ccp_options ccp_gotoptions[];
usr.sbin/pppd/ccp.h
53
extern ccp_options ccp_allowoptions[];
usr.sbin/pppd/ccp.h
54
extern ccp_options ccp_hisoptions[];