diff options
-rw-r--r-- | accel-pppd/auth/auth_mschap_v2.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/accel-pppd/auth/auth_mschap_v2.c b/accel-pppd/auth/auth_mschap_v2.c index 24272e73..aeb49077 100644 --- a/accel-pppd/auth/auth_mschap_v2.c +++ b/accel-pppd/auth/auth_mschap_v2.c @@ -606,16 +606,12 @@ static void chap_recv(struct ppp_handler_t *h) { struct chap_auth_data_t *d = container_of(h, typeof(*d), h); struct chap_hdr_t *hdr = (struct chap_hdr_t *)d->ppp->buf; - static int drop=1; if (d->ppp->buf_size < sizeof(*hdr) || ntohs(hdr->len) < HDR_LEN || ntohs(hdr->len) < d->ppp->buf_size - 2) { log_ppp_warn("mschap-v2: short packet received\n"); return; } - if (drop-- == 1) - return; - if (hdr->code == CHAP_RESPONSE) chap_recv_response(d, hdr); else |