diff options
author | Justin Clark-Casey (justincc) | 2009-09-23 18:42:20 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2009-09-23 18:42:20 +0100 |
commit | eb892e05452db7b614b96968edec727f79736374 (patch) | |
tree | da9e310527b7acaa00cdab0960e183391ce43009 /OpenSim/Region/ClientStack/LindenUDP/LLClientView.cs | |
parent | minor: remove double initialization of user appearance module in Grid.UserSer... (diff) | |
parent | Removing the overlooked .exe.config files for the deleted servers (diff) | |
download | opensim-SC_OLD-eb892e05452db7b614b96968edec727f79736374.zip opensim-SC_OLD-eb892e05452db7b614b96968edec727f79736374.tar.gz opensim-SC_OLD-eb892e05452db7b614b96968edec727f79736374.tar.bz2 opensim-SC_OLD-eb892e05452db7b614b96968edec727f79736374.tar.xz |
Merge branch 'master' of ssh://justincc@opensimulator.org/var/git/opensim
Diffstat (limited to '')
-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 | ||