Home | History | Annotate | Download | only in pppd

Lines Matching refs:protp

319     struct protent *protp;
355 for (i = 0; (protp = protocols[i]) != NULL; ++i)
356 (*protp->init)(0);
451 for (i = 0; (protp = protocols[i]) != NULL; ++i)
452 if (protp->check_options != NULL)
453 (*protp->check_options)();
1011 struct protent *protp;
1069 for (i = 0; (protp = protocols[i]) != NULL; ++i) {
1070 if (protp->protocol == protocol && protp->enabled_flag) {
1071 (*protp->input)(0, p, len);
1074 if (protocol == (protp->protocol & ~0x8000) && protp->enabled_flag
1075 && protp->datainput != NULL) {
1076 (*protp->datainput)(0, p, len);