Lines Matching defs:inp
336 u_char *inp;
344 inp = inpacket;
350 GETCHAR(code, inp);
351 GETCHAR(id, inp);
352 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;
441 if (inp >= outpacket_buf && inp < outpacket_buf+PPP_MRU+PPP_HDRLEN)
451 code = (*f->callbacks->reqci)(f, inp, &len, reject_if_disagree);
465 fsm_sdata(f, code, id, inp, len);
493 fsm_rconfack(f, id, inp, len)
496 u_char *inp;
501 if( !(f->callbacks->ackci != NULL ? (*f->callbacks->ackci)(f, inp, len):
504 error("Received bad configure-ack: %P", inp, len);
550 fsm_rconfnakrej(f, code, id, inp, len)
553 u_char *inp;
562 if (proc == NULL || !(ret = proc(f, inp, len))) {
564 error("Received bad configure-nak/rej: %P", inp, len);
676 fsm_rcoderej(f, inp, len)
678 u_char *inp;
689 GETCHAR(code, inp);
690 GETCHAR(id, inp);
699 seriouserr = (*f->callbacks->codereject)(f,code,id,inp,len);