1
0
mirror of https://github.com/SoftEtherVPN/SoftEtherVPN.git synced 2024-08-24 21:43:00 +03:00

Fix 'Session Timeouted.': Change the time for checking wether all the TCP connectins are alive or not.

This commit is contained in:
hiura 2024-03-24 19:11:24 +09:00
parent 56c12de929
commit e8c14cba68

View File

@ -615,7 +615,7 @@ void SessionMain(SESSION *s)
UINT max_conn = s->ClientOption->MaxConnection;
if ((s->CurrentConnectionEstablishTime +
(UINT64)(s->ClientOption->AdditionalConnectionInterval * 1000 * 2 + CONNECTING_TIMEOUT * 2))
(UINT64)(num_tcp_conn * s->ClientOption->AdditionalConnectionInterval * 1000 * 2 + CONNECTING_TIMEOUT * 2))
<= Tick64())
{
if (s->ClientOption->BindLocalPort != 0 || num_tcp_conn == 0)