Page 1 of 1

"RetryInterval"maybe can be setting in SoftEther Server

Posted: Sun Jun 28, 2020 9:43 am
by sejuka
the "RetryInterval" that appear in vpn_server.config can be setting by user in SoftEther Server. However,it not working when i change the RetryInterval. I found the question that not working when i get the source code.
// this code in module Cedar => Link.c ( 640 lines)

Code: Select all

o->RetryInterval = 10; 
the default RetryInterval time just 10 seconds, it's so short that the software allways be the connecting. So, i think the RetryInterval can be setting by user,and it 's meaningful.
Yes, it just a simple change like this:

Code: Select all

o->RetryInterval = option->RetryInterval;
that's is my opinion.

Re: "RetryInterval"maybe can be setting in SoftEther Server

Posted: Wed Jul 08, 2020 6:53 am
by sejuka
Is not important the RetryInterval can be setting in SoftEther Server ? really ?

Re: "RetryInterval"maybe can be setting in SoftEther Server

Posted: Mon Jul 27, 2020 2:10 am
by sejuka
I think it will be useful on the SoftEther Server in the future.

Re: "RetryInterval"maybe can be setting in SoftEther Server

Posted: Mon Jul 27, 2020 10:05 am
by cedar
This code specifies the re-connection interval for Cascade Connection between Virtual HUBs.
The re-connection interval for VPN client is defined elsewhere.

Re: "RetryInterval"maybe can be setting in SoftEther Server

Posted: Mon Aug 10, 2020 2:23 am
by sejuka
Yes, you are right. The re-connection interval for VPN client can be define in Properties of connection.
So, i think the re-connection interval for Cascade Connection between Virtual HUBs can be real define as important as VPN client.
Now, we can't setting the re-connection interval for Cascade connection, because the code wrote like

Code: Select all

o->RetryInterval = 10; 
.
So, the vpn_server/brideg.config is not working.

cedar wrote:
Mon Jul 27, 2020 10:05 am
This code specifies the re-connection interval for Cascade Connection between Virtual HUBs.
The re-connection interval for VPN client is defined elsewhere.