aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim')
-rw-r--r--OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs10
1 files changed, 2 insertions, 8 deletions
diff --git a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
index bf41c25..b786989 100644
--- a/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
+++ b/OpenSim/Region/ClientStack/LindenUDP/LLUDPServer.cs
@@ -82,12 +82,6 @@ namespace OpenSim.Region.ClientStack.LindenUDP
82 /// </value> 82 /// </value>
83 protected AgentCircuitManager m_circuitManager; 83 protected AgentCircuitManager m_circuitManager;
84 84
85 public LLPacketServer PacketServer
86 {
87 get { return m_packetServer; }
88 set { m_packetServer = value; }
89 }
90
91 public IScene LocalScene 85 public IScene LocalScene
92 { 86 {
93 set 87 set
@@ -417,7 +411,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
417 proxyCircuits[useCircuit.CircuitCode.Code] = epProxy; 411 proxyCircuits[useCircuit.CircuitCode.Code] = epProxy;
418 } 412 }
419 413
420 PacketServer.AddNewClient(epSender, useCircuit, m_assetCache, m_circuitManager, epProxy); 414 m_packetServer.AddNewClient(epSender, useCircuit, m_assetCache, m_circuitManager, epProxy);
421 } 415 }
422 } 416 }
423 417
@@ -569,7 +563,7 @@ namespace OpenSim.Region.ClientStack.LindenUDP
569 } 563 }
570 } 564 }
571 565
572 PacketServer.AddNewClient(userEP, useCircuit, m_assetCache, m_circuitManager, proxyEP); 566 m_packetServer.AddNewClient(userEP, useCircuit, m_assetCache, m_circuitManager, proxyEP);
573 } 567 }
574 } 568 }
575} 569}