diff options
Diffstat (limited to 'ThirdParty/3Di/LoadBalancer/LoadBalancerPlugin.cs')
-rw-r--r-- | ThirdParty/3Di/LoadBalancer/LoadBalancerPlugin.cs | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/ThirdParty/3Di/LoadBalancer/LoadBalancerPlugin.cs b/ThirdParty/3Di/LoadBalancer/LoadBalancerPlugin.cs index 7025877..4440db1 100644 --- a/ThirdParty/3Di/LoadBalancer/LoadBalancerPlugin.cs +++ b/ThirdParty/3Di/LoadBalancer/LoadBalancerPlugin.cs | |||
@@ -81,10 +81,9 @@ namespace OpenSim.ApplicationPlugins.LoadBalancer | |||
81 | if (proxyURL.Length == 0) return; | 81 | if (proxyURL.Length == 0) return; |
82 | 82 | ||
83 | StartTcpServer(); | 83 | StartTcpServer(); |
84 | // BUG: This needs to be fixed | 84 | |
85 | // TODO: YARLY. | 85 | LLClientView.SynchronizeClient = SynchronizePackets; |
86 | // LLClientView.SynchronizeClient = new LLClientView.SynchronizeClientHandler(SynchronizePackets); | 86 | AsynchronousSocketListener.PacketHandler = SynchronizePacketRecieve; |
87 | AsynchronousSocketListener.PacketHandler = new AsynchronousSocketListener.PacketRecieveHandler(SynchronizePacketRecieve); | ||
88 | 87 | ||
89 | sceneManager = openSim.SceneManager; | 88 | sceneManager = openSim.SceneManager; |
90 | m_clientServers = openSim.ClientServers; | 89 | m_clientServers = openSim.ClientServers; |
@@ -495,8 +494,6 @@ namespace OpenSim.ApplicationPlugins.LoadBalancer | |||
495 | m_log.InfoFormat("[BALANCER] " + "region deserialized [{0}]", dst_region.RegionID); | 494 | m_log.InfoFormat("[BALANCER] " + "region deserialized [{0}]", dst_region.RegionID); |
496 | } | 495 | } |
497 | 496 | ||
498 | // BUG: This looks dodgy. Johan please look at this. | ||
499 | // Prevent nullreference on zero entry | ||
500 | if (dst_region != null) | 497 | if (dst_region != null) |
501 | { | 498 | { |
502 | // deserialization of client data | 499 | // deserialization of client data |
@@ -561,7 +558,6 @@ namespace OpenSim.ApplicationPlugins.LoadBalancer | |||
561 | AgentCircuitData agentdata = new AgentCircuitData(data.agentcircuit); | 558 | AgentCircuitData agentdata = new AgentCircuitData(data.agentcircuit); |
562 | scene.AuthenticateHandler.AddNewCircuit(circuit_code, agentdata); | 559 | scene.AuthenticateHandler.AddNewCircuit(circuit_code, agentdata); |
563 | 560 | ||
564 | // BUG: Will only work with LLUDPServer. | ||
565 | // TODO: This needs to be abstracted and converted into IClientNetworkServer | 561 | // TODO: This needs to be abstracted and converted into IClientNetworkServer |
566 | if (clientserv is LLUDPServer) | 562 | if (clientserv is LLUDPServer) |
567 | { | 563 | { |