Browse Source

patch #6969: PPP: missing PAP authentication UNTIMEOUT

STABLE-2_1_x
goldsimon 17 years ago
parent
commit
b5d28e0a9c
  1. 3
      CHANGELOG
  2. 1
      src/netif/ppp/pap.c

3
CHANGELOG

@ -46,6 +46,9 @@ HISTORY
++ Bugfixes:
2009-12-04: Simon Goldschmidt (patch by Ioardan Neshev)
* pap.c: patch #6969: PPP: missing PAP authentication UNTIMEOUT
2009-12-03: Simon Goldschmidt
* tcp.h, tcp_in.c, tcp_out.c: Fixed bug #28106: dup ack for fast retransmit
could have non-zero length

1
src/netif/ppp/pap.c

@ -492,6 +492,7 @@ upap_rauthack(upap_state *u, u_char *inp, int id, int len)
msg = (char *) inp;
PRINTMSG(msg, msglen);
UNTIMEOUT(upap_timeout, u); /* Cancel timeout */
u->us_clientstate = UPAPCS_OPEN;
auth_withpeer_success(u->us_unit, PPP_PAP);

Loading…
Cancel
Save