aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
diff options
context:
space:
mode:
authorJustin Clarke Casey2008-10-17 17:08:14 +0000
committerJustin Clarke Casey2008-10-17 17:08:14 +0000
commite4b8912296536aab8a267ddbaee5d95419f806e8 (patch)
treef8e16ea6fc771634b70e87447a9eb3286de130f6 /OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
parent* Apply a modified version of http://opensimulator.org/mantis/view.php?id=2290 (diff)
downloadopensim-SC_OLD-e4b8912296536aab8a267ddbaee5d95419f806e8.zip
opensim-SC_OLD-e4b8912296536aab8a267ddbaee5d95419f806e8.tar.gz
opensim-SC_OLD-e4b8912296536aab8a267ddbaee5d95419f806e8.tar.bz2
opensim-SC_OLD-e4b8912296536aab8a267ddbaee5d95419f806e8.tar.xz
* reverse part of a change that accidentally crept in with the last revision
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
index 1f1f88b..20452e0 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
@@ -60,7 +60,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
60 /// <value> 60 /// <value>
61 /// The endpoint of a sender of a particular packet. The port is changed by the various socket receive methods 61 /// The endpoint of a sender of a particular packet. The port is changed by the various socket receive methods
62 /// </value> 62 /// </value>
63 protected EndPoint epSender = new IPEndPoint(IPAddress.Any, 0); 63 protected EndPoint epSender;
64 64
65 protected EndPoint epProxy; 65 protected EndPoint epProxy;
66 protected int proxyPortOffset; 66 protected int proxyPortOffset;
@@ -175,6 +175,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
175 /// <param name="result"></param> 175 /// <param name="result"></param>
176 protected virtual void OnReceivedData(IAsyncResult result) 176 protected virtual void OnReceivedData(IAsyncResult result)
177 { 177 {
178 epSender = new IPEndPoint(listenIP, 0);
178 Packet packet = null; 179 Packet packet = null;
179 180
180 int numBytes = 1; 181 int numBytes = 1;