You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
[BUGFIX] Fix the no-progress timeout logic (issue #531, PR #574).
The idle timeout and the "user progress" timeout now use different
alarms for cleaner code.
[BUGFIX] Fix MTU probe packets causing stream write stalls (issue #541,
PR #576). MTU probes were incorrectly counted as delayed packets,
preventing streams from becoming writable and causing onwrite callbacks
to never fire.
[BUGFIX] Remove assert for gQUIC special case (0 data size).
[IMPROVEMENT] Add LSQUIC_LIBSSL build option to specify which SSL
library to use, skipping auto-detection. Use LIBSSL_LIB instead of
LIBSSL_DIR for searching library files.
[IMPROVEMENT] Align usage of EVP_MD_CTX for OpenSSL/BoringSSL
compatibility (PR #559). Switch from BoringSSL-only EVP_MD_CTX_init/
cleanup to cross-compatible EVP_MD_CTX_new/free.
[IMPROVEMENT] Condition CRYPTO_library_init to BoringSSL only (PR #560).