m) fix: handshake may failed if client send too many early data (#352)

Co-authored-by: wangfuyu <ivanfywang@gmail.com>
This commit is contained in:
wangfuyu 2022-01-12 00:10:18 +08:00 committed by GitHub
parent f07b3eae43
commit d190ae8e66
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1853,8 +1853,10 @@ mini_conn_ci_packet_in (struct lsquic_conn *lconn,
process_deferred_packets(mc);
}
else
LSQ_DEBUG("won't defer more than %u packets: drop",
MINI_CONN_MAX_DEFERRED);
{
process_packet(mc, packet_in);
process_deferred_packets(mc);
}
}