"RetryInterval"maybe can be setting in SoftEther Server

Post your questions about SoftEther VPN software here. Please answer questions if you can afford.
Post Reply
sejuka
Posts: 4
Joined: Sun Jun 28, 2020 9:12 am

"RetryInterval"maybe can be setting in SoftEther Server

Post by sejuka » Sun Jun 28, 2020 9:43 am

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.

sejuka
Posts: 4
Joined: Sun Jun 28, 2020 9:12 am

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

Post by sejuka » Wed Jul 08, 2020 6:53 am

Is not important the RetryInterval can be setting in SoftEther Server ? really ?

sejuka
Posts: 4
Joined: Sun Jun 28, 2020 9:12 am

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

Post by sejuka » Mon Jul 27, 2020 2:10 am

I think it will be useful on the SoftEther Server in the future.

cedar
Site Admin
Posts: 2070
Joined: Sat Mar 09, 2013 5:37 am

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

Post by cedar » 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.

sejuka
Posts: 4
Joined: Sun Jun 28, 2020 9:12 am

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

Post by sejuka » Mon Aug 10, 2020 2:23 am

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.

Post Reply