diff options
author | UbitUmarov | 2019-06-13 01:33:25 +0100 |
---|---|---|
committer | UbitUmarov | 2019-06-13 01:33:25 +0100 |
commit | 79442c8c56afc543ea731fff92ac4c4e9a442ee3 (patch) | |
tree | 2a90051160428b57ea9f4c36f452fe2141d3e462 /OpenSim/Region/CoreModules/Agent/Xfer/XferModule.cs | |
parent | delay timeout a bit (diff) | |
download | opensim-SC-79442c8c56afc543ea731fff92ac4c4e9a442ee3.zip opensim-SC-79442c8c56afc543ea731fff92ac4c4e9a442ee3.tar.gz opensim-SC-79442c8c56afc543ea731fff92ac4c4e9a442ee3.tar.bz2 opensim-SC-79442c8c56afc543ea731fff92ac4c4e9a442ee3.tar.xz |
handle confirmXfer sync
Diffstat (limited to 'OpenSim/Region/CoreModules/Agent/Xfer/XferModule.cs')
-rw-r--r-- | OpenSim/Region/CoreModules/Agent/Xfer/XferModule.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/OpenSim/Region/CoreModules/Agent/Xfer/XferModule.cs b/OpenSim/Region/CoreModules/Agent/Xfer/XferModule.cs index 6157f38..56123a5 100644 --- a/OpenSim/Region/CoreModules/Agent/Xfer/XferModule.cs +++ b/OpenSim/Region/CoreModules/Agent/Xfer/XferModule.cs | |||
@@ -463,10 +463,10 @@ namespace OpenSim.Region.CoreModules.Agent.Xfer | |||
463 | { | 463 | { |
464 | int timeMS = now - lastACKTimeMS; | 464 | int timeMS = now - lastACKTimeMS; |
465 | int tout = 5 * remoteClient.PingTimeMS; | 465 | int tout = 5 * remoteClient.PingTimeMS; |
466 | if(tout > 10000) | 466 | if (tout < 1000) |
467 | tout = 10000; | ||
468 | else if (tout < 1000) | ||
469 | tout = 1000; | 467 | tout = 1000; |
468 | else if(tout > 10000) | ||
469 | tout = 10000; | ||
470 | 470 | ||
471 | if (timeMS > tout) | 471 | if (timeMS > tout) |
472 | { | 472 | { |