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
Currently, closing the TCP session is asynchronous. This leads to a situation where when the event thread closes a TCP-TLS session and then creates a new one for the same session, the asynchronous event indicating that the TCP session has closed causes the new session to also close. This issue arises because we are unable to distinguish between the old and new sessions.
Steps to Reproduce
Close a TCP-TLS session asynchronously.
Immediately create a new TCP-TLS session for the same connection.
Observe that the new session is closed unexpectedly due to the asynchronous event from the old session closure.
Expected Behavior
The new TCP-TLS session should remain open and not be affected by the asynchronous closure event of the old session.
The text was updated successfully, but these errors were encountered:
Description
Currently, closing the TCP session is asynchronous. This leads to a situation where when the event thread closes a TCP-TLS session and then creates a new one for the same session, the asynchronous event indicating that the TCP session has closed causes the new session to also close. This issue arises because we are unable to distinguish between the old and new sessions.
Steps to Reproduce
Expected Behavior
The new TCP-TLS session should remain open and not be affected by the asynchronous closure event of the old session.
The text was updated successfully, but these errors were encountered: