mirror of
https://github.com/SoftEtherVPN/SoftEtherVPN.git
synced 2025-07-06 07:44:57 +03:00
Compare commits
5 Commits
5.02.5184
...
3087e03e0c
Author | SHA1 | Date | |
---|---|---|---|
3087e03e0c | |||
8ad34b2012 | |||
37231ac006 | |||
619ca3d915 | |||
36c018b1d9 |
@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.10)
|
||||
set(BUILD_NUMBER CACHE STRING "The number of the current build.")
|
||||
|
||||
if ("${BUILD_NUMBER}" STREQUAL "")
|
||||
set(BUILD_NUMBER "5184")
|
||||
set(BUILD_NUMBER "5185")
|
||||
endif()
|
||||
|
||||
if (BUILD_NUMBER LESS 5180)
|
||||
|
@ -1,5 +1,5 @@
|
||||
{
|
||||
"environments": [ { "BuildNumber": "5184" } ],
|
||||
"environments": [ { "BuildNumber": "5185" } ],
|
||||
"configurations": [
|
||||
{
|
||||
"name": "x64-native",
|
||||
|
@ -2103,7 +2103,7 @@ void StopL2TPThread(L2TP_SERVER *l2tp, L2TP_TUNNEL *t, L2TP_SESSION *s)
|
||||
// Interrupt processing of L2TP server
|
||||
void L2TPProcessInterrupts(L2TP_SERVER *l2tp)
|
||||
{
|
||||
UINT i, j;
|
||||
UINT i, j, k;
|
||||
LIST *delete_tunnel_list = NULL;
|
||||
// Validate arguments
|
||||
if (l2tp == NULL)
|
||||
@ -2138,9 +2138,9 @@ void L2TPProcessInterrupts(L2TP_SERVER *l2tp)
|
||||
UINT64 l2tpTimeout = L2TP_TUNNEL_TIMEOUT;
|
||||
|
||||
// If we got on ANY session a higher timeout than the default L2TP tunnel timeout, increase it
|
||||
for (i = 0; i < LIST_NUM(t->SessionList); i++)
|
||||
for (k = 0; k < LIST_NUM(t->SessionList); k++)
|
||||
{
|
||||
L2TP_SESSION* s = LIST_DATA(t->SessionList, i);
|
||||
L2TP_SESSION* s = LIST_DATA(t->SessionList, k);
|
||||
|
||||
if (s->TubeRecv != NULL && s->TubeRecv->DataTimeout > l2tpTimeout)
|
||||
{
|
||||
|
Reference in New Issue
Block a user