fix(connectionhandler): Remove unnecessary delay in TLS session ticket handling for connections without SNI

This commit is contained in:
2025-03-18 00:32:01 +00:00
parent b10f35be4b
commit 4b30e377b9
3 changed files with 8 additions and 8 deletions

View File

@ -1,5 +1,11 @@
# Changelog
## 2025-03-18 - 4.2.3 - fix(connectionhandler)
Remove unnecessary delay in TLS session ticket handling for connections without SNI
- Eliminated the extra setTimeout waiting period before cleaning up connections flagged as session_ticket_blocked_no_sni
- Ensures immediate cleanup and improves connection responsiveness during TLS handshake failures
## 2025-03-18 - 4.2.2 - fix(connectionhandler)
Ensure proper termination of TLS connections without SNI by explicitly ending the socket after sending the unrecognized_name alert. This prevents the connection from hanging and avoids potential duplicate handling.