Home | History | Annotate | Download | only in pppd

Lines Matching defs:inp

339     u_char *inp;
347 inp = inpacket;
352 GETCHAR(code, inp);
353 GETCHAR(id, inp);
354 GETSHORT(len, inp);
376 fsm_rconfreq(f, id, inp, len);
380 fsm_rconfack(f, id, inp, len);
385 fsm_rconfnakrej(f, code, id, inp, len);
389 fsm_rtermreq(f, id, inp, len);
397 fsm_rcoderej(f, inp, len);
402 || !(*f->callbacks->extcode)(f, code, id, inp, len) )
413 fsm_rconfreq(f, id, inp, len)
416 u_char *inp;
451 code = (*f->callbacks->reqci)(f, inp, &len, reject_if_disagree);
458 fsm_sdata(f, code, id, inp, len);
484 fsm_rconfack(f, id, inp, len)
487 u_char *inp;
492 if( !(f->callbacks->ackci? (*f->callbacks->ackci)(f, inp, len):
495 error("Received bad configure-ack: %P", inp, len);
542 fsm_rconfnakrej(f, code, id, inp, len)
545 u_char *inp;
558 || !(ret = f->callbacks->nakci(f, inp, len, treat_as_reject))) {
559 error("Received bad configure-nak: %P", inp, len);
565 || !(ret = f->callbacks->rejci(f, inp, len))) {
566 error("Received bad configure-rej: %P", inp, len);
679 fsm_rcoderej(f, inp, len)
681 u_char *inp;
690 GETCHAR(code, inp);
691 GETCHAR(id, inp);