handle confirmXfer sync

This commit is contained in:
UbitUmarov
2019-06-13 01:33:25 +01:00
parent b09ea5bdc7
commit 79442c8c56

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)
{