From e4b8912296536aab8a267ddbaee5d95419f806e8 Mon Sep 17 00:00:00 2001
From: Justin Clarke Casey
Date: Fri, 17 Oct 2008 17:08:14 +0000
Subject: * reverse part of a change that accidentally crept in with the last
revision
---
OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
(limited to 'OpenSim/Region')
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
///
/// The endpoint of a sender of a particular packet. The port is changed by the various socket receive methods
///
- protected EndPoint epSender = new IPEndPoint(IPAddress.Any, 0);
+ protected EndPoint epSender;
protected EndPoint epProxy;
protected int proxyPortOffset;
@@ -175,6 +175,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
///
protected virtual void OnReceivedData(IAsyncResult result)
{
+ epSender = new IPEndPoint(listenIP, 0);
Packet packet = null;
int numBytes = 1;
--
cgit v1.1