diff options
author | Diva Canto | 2009-09-23 07:54:13 -0700 |
---|---|---|
committer | Diva Canto | 2009-09-23 07:54:13 -0700 |
commit | 486a9a5b617ace99993bacdeccedee565343cf1b (patch) | |
tree | 88ccaf25d9dc42339cf1006b03ca385aed0dbced /OpenSim/Region/ClientStack | |
parent | Added hg console commands to the module. (diff) | |
parent | Added delay loop to give a newly created assembly time to appear. On (diff) | |
download | opensim-SC_OLD-486a9a5b617ace99993bacdeccedee565343cf1b.zip opensim-SC_OLD-486a9a5b617ace99993bacdeccedee565343cf1b.tar.gz opensim-SC_OLD-486a9a5b617ace99993bacdeccedee565343cf1b.tar.bz2 opensim-SC_OLD-486a9a5b617ace99993bacdeccedee565343cf1b.tar.xz |
Merge branch 'master' of ssh://diva@opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Region/ClientStack')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs index f6ae639..912cbf1 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |||
@@ -1664,6 +1664,9 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
1664 | enablesimpacket.SimulatorInfo.IP += (uint)byteIP[1] << 8; | 1664 | enablesimpacket.SimulatorInfo.IP += (uint)byteIP[1] << 8; |
1665 | enablesimpacket.SimulatorInfo.IP += (uint)byteIP[0]; | 1665 | enablesimpacket.SimulatorInfo.IP += (uint)byteIP[0]; |
1666 | enablesimpacket.SimulatorInfo.Port = neighbourPort; | 1666 | enablesimpacket.SimulatorInfo.Port = neighbourPort; |
1667 | |||
1668 | enablesimpacket.Header.Reliable = true; // ESP's should be reliable. | ||
1669 | |||
1667 | OutPacket(enablesimpacket, ThrottleOutPacketType.Task); | 1670 | OutPacket(enablesimpacket, ThrottleOutPacketType.Task); |
1668 | } | 1671 | } |
1669 | 1672 | ||