diff --git a/changelog.md b/changelog.md index 94cee3b..f8956e4 100644 --- a/changelog.md +++ b/changelog.md @@ -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. diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index adc3469..d61698b 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@push.rocks/smartproxy', - version: '4.2.2', + version: '4.2.3', description: 'A powerful proxy package that effectively handles high traffic, with features such as SSL/TLS support, port proxying, WebSocket handling, dynamic routing with authentication options, and automatic ACME certificate management.' } diff --git a/ts/classes.pp.connectionhandler.ts b/ts/classes.pp.connectionhandler.ts index c713d8a..840661a 100644 --- a/ts/classes.pp.connectionhandler.ts +++ b/ts/classes.pp.connectionhandler.ts @@ -593,13 +593,7 @@ export class ConnectionHandler { // Function to handle the clean socket termination - but more gradually const finishConnection = () => { - // Give Chrome more time to process the alert before closing - // We won't call destroy() at all - just end() and let the socket close naturally - - // Log the cleanup but wait for natural closure - setTimeout(() => { - this.connectionManager.cleanupConnection(record, 'session_ticket_blocked_no_sni'); - }, 1000); // Longer delay to let socket cleanup happen naturally + this.connectionManager.cleanupConnection(record, 'session_ticket_blocked_no_sni'); }; if (writeSuccessful) {