diff options
Diffstat (limited to 'OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs')
-rw-r--r-- | OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs index 54434f1..5184e35 100644 --- a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs +++ b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs | |||
@@ -75,7 +75,6 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
75 | protected bool Allow_Alternate_Port; | 75 | protected bool Allow_Alternate_Port; |
76 | protected IPAddress listenIP = IPAddress.Parse("0.0.0.0"); | 76 | protected IPAddress listenIP = IPAddress.Parse("0.0.0.0"); |
77 | protected IScene m_localScene; | 77 | protected IScene m_localScene; |
78 | protected IAssetCache m_assetCache; | ||
79 | protected int m_clientSocketReceiveBuffer = 0; | 78 | protected int m_clientSocketReceiveBuffer = 0; |
80 | 79 | ||
81 | /// <value> | 80 | /// <value> |
@@ -131,7 +130,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
131 | 130 | ||
132 | public LLUDPServer( | 131 | public LLUDPServer( |
133 | IPAddress _listenIP, ref uint port, int proxyPortOffset, bool allow_alternate_port, IConfigSource configSource, | 132 | IPAddress _listenIP, ref uint port, int proxyPortOffset, bool allow_alternate_port, IConfigSource configSource, |
134 | IAssetCache assetCache, AgentCircuitManager authenticateClass) | 133 | AgentCircuitManager authenticateClass) |
135 | { | 134 | { |
136 | Initialise(_listenIP, ref port, proxyPortOffset, allow_alternate_port, configSource, authenticateClass); | 135 | Initialise(_listenIP, ref port, proxyPortOffset, allow_alternate_port, configSource, authenticateClass); |
137 | } | 136 | } |
@@ -451,7 +450,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
451 | proxyCircuits[useCircuit.CircuitCode.Code] = epProxy; | 450 | proxyCircuits[useCircuit.CircuitCode.Code] = epProxy; |
452 | } | 451 | } |
453 | 452 | ||
454 | m_packetServer.AddNewClient(epSender, useCircuit, m_assetCache, sessionInfo, epProxy); | 453 | m_packetServer.AddNewClient(epSender, useCircuit, sessionInfo, epProxy); |
455 | 454 | ||
456 | //m_log.DebugFormat( | 455 | //m_log.DebugFormat( |
457 | // "[CONNECTION SUCCESS]: Incoming client {0} (circuit code {1}) received and authenticated for {2}", | 456 | // "[CONNECTION SUCCESS]: Incoming client {0} (circuit code {1}) received and authenticated for {2}", |
@@ -629,7 +628,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP | |||
629 | } | 628 | } |
630 | } | 629 | } |
631 | 630 | ||
632 | m_packetServer.AddNewClient(userEP, useCircuit, m_assetCache, sessionInfo, proxyEP); | 631 | m_packetServer.AddNewClient(userEP, useCircuit, sessionInfo, proxyEP); |
633 | } | 632 | } |
634 | } | 633 | } |
635 | } | 634 | } |