Home | History | Annotate | Download | only in pppd

Lines Matching refs:ao

541 	ccp_options *ao = &ccp_allowoptions[f->unit];
603 ao->mppe = go->mppe;
605 ao->bsd_compress = go->bsd_compress = 0;
606 ao->predictor_1 = go->predictor_1 = 0;
607 ao->predictor_2 = go->predictor_2 = 0;
608 ao->deflate = go->deflate = 0;
1078 ccp_options *ao = &ccp_allowoptions[f->unit];
1105 if (!ao->mppe || clen != CILEN_MPPE) {
1141 if (ao->mppe & MPPE_OPT_128)
1143 else if (ao->mppe & MPPE_OPT_40)
1150 if (!(ao->mppe & MPPE_OPT_128)) {
1155 if (!(ao->mppe & MPPE_OPT_40)) {
1204 if (!ao->deflate || clen != CILEN_DEFLATE
1205 || (!ao->deflate_correct && type == CI_DEFLATE)
1206 || (!ao->deflate_draft && type == CI_DEFLATE_DRAFT)) {
1215 || nb > ao->deflate_size || nb < DEFLATE_MIN_WORKS) {
1218 p[2] = DEFLATE_MAKE_OPT(ao->deflate_size);
1249 if (!ao->bsd_compress || clen != CILEN_BSD_COMPRESS) {
1257 || nb > ao->bsd_bits || nb < BSD_MIN_BITS) {
1260 p[2] = BSD_MAKE_OPT(BSD_CURRENT_VERSION, ao->bsd_bits);
1291 if (!ao->predictor_1 || clen != CILEN_PREDICTOR_1) {
1304 if (!ao->predictor_2 || clen != CILEN_PREDICTOR_2) {
1344 if (ret == CONFREJ && ao->mppe && rej_for_ci_mppe) {