handle confirmXfer sync

0.9.1.0-post-fixes
UbitUmarov 2019-06-13 01:33:25 +01:00
parent b09ea5bdc7
commit 79442c8c56
1 changed files with 3 additions and 3 deletions

View File

@ -463,10 +463,10 @@ namespace OpenSim.Region.CoreModules.Agent.Xfer
{
int timeMS = now - lastACKTimeMS;
int tout = 5 * remoteClient.PingTimeMS;
if(tout > 10000)
tout = 10000;
else if (tout < 1000)
if (tout < 1000)
tout = 1000;
else if(tout > 10000)
tout = 10000;
if (timeMS > tout)
{