diff options
author | Melanie Thielker | 2008-10-05 16:43:58 +0000 |
---|---|---|
committer | Melanie Thielker | 2008-10-05 16:43:58 +0000 |
commit | a3136d2bb1563d986d938140e5be6b3dabbf5ca3 (patch) | |
tree | 9633fdf049daf2a446b8524990cef698937b23f8 | |
parent | Add parcel info "UUID" to snapshot (diff) | |
download | opensim-SC_OLD-a3136d2bb1563d986d938140e5be6b3dabbf5ca3.zip opensim-SC_OLD-a3136d2bb1563d986d938140e5be6b3dabbf5ca3.tar.gz opensim-SC_OLD-a3136d2bb1563d986d938140e5be6b3dabbf5ca3.tar.bz2 opensim-SC_OLD-a3136d2bb1563d986d938140e5be6b3dabbf5ca3.tar.xz |
Revert the packet resend timing changes. They caused login issues in primmy
regions.
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs b/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs index 48a54d7..4c92859 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLPacketHandler.cs | |||
@@ -124,7 +124,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
124 | /// <summary> | 124 | /// <summary> |
125 | /// The number of milliseconds that can pass before a packet that needs an ack is resent. | 125 | /// The number of milliseconds that can pass before a packet that needs an ack is resent. |
126 | /// </param> | 126 | /// </param> |
127 | private uint m_ResendTimeout = 4000; | 127 | private uint m_ResendTimeout = 2000; |
128 | 128 | ||
129 | public uint ResendTimeout | 129 | public uint ResendTimeout |
130 | { | 130 | { |
@@ -132,7 +132,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
132 | set { m_ResendTimeout = value; } | 132 | set { m_ResendTimeout = value; } |
133 | } | 133 | } |
134 | 134 | ||
135 | private uint m_SilenceLimit = 350; | 135 | private uint m_SilenceLimit = 250; |
136 | 136 | ||
137 | public uint SilenceLimit | 137 | public uint SilenceLimit |
138 | { | 138 | { |