diff options
author | UbitUmarov | 2014-10-13 13:17:48 +0100 |
---|---|---|
committer | UbitUmarov | 2014-10-13 13:17:48 +0100 |
commit | 8c41271b3312f2a02608ffc41b220f7fb018d6ad (patch) | |
tree | f39e6d86db7f489745df7ce7c9d1626c0fe80b5f /OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs | |
parent | on util thread pool reduce the min number of threads, increase the (diff) | |
download | opensim-SC-8c41271b3312f2a02608ffc41b220f7fb018d6ad.zip opensim-SC-8c41271b3312f2a02608ffc41b220f7fb018d6ad.tar.gz opensim-SC-8c41271b3312f2a02608ffc41b220f7fb018d6ad.tar.bz2 opensim-SC-8c41271b3312f2a02608ffc41b220f7fb018d6ad.tar.xz |
*TEST* send udp sync. Stop uncontroled and hidden use of IO threads.
Testing this may require several people.
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs index 99e7aba..ac4a877 100644 --- a/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs +++ b/OpenSim/Region/ClientStack/Linden/UDP/LLUDPServer.cs | |||
@@ -1305,7 +1305,8 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1305 | PacketsSentCount++; | 1305 | PacketsSentCount++; |
1306 | 1306 | ||
1307 | // Put the UDP payload on the wire | 1307 | // Put the UDP payload on the wire |
1308 | AsyncBeginSend(buffer); | 1308 | //AsyncBeginSend(buffer); |
1309 | SyncSend(buffer); | ||
1309 | 1310 | ||
1310 | // Keep track of when this packet was sent out (right now) | 1311 | // Keep track of when this packet was sent out (right now) |
1311 | outgoingPacket.TickCount = Environment.TickCount & Int32.MaxValue; | 1312 | outgoingPacket.TickCount = Environment.TickCount & Int32.MaxValue; |