aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/ThirdParty/3Di/LoadBalancer/TcpClient.cs
diff options
context:
space:
mode:
Diffstat (limited to 'ThirdParty/3Di/LoadBalancer/TcpClient.cs')
-rw-r--r--ThirdParty/3Di/LoadBalancer/TcpClient.cs8
1 files changed, 5 insertions, 3 deletions
diff --git a/ThirdParty/3Di/LoadBalancer/TcpClient.cs b/ThirdParty/3Di/LoadBalancer/TcpClient.cs
index c794def..1acba24 100644
--- a/ThirdParty/3Di/LoadBalancer/TcpClient.cs
+++ b/ThirdParty/3Di/LoadBalancer/TcpClient.cs
@@ -181,8 +181,10 @@ namespace OpenSim.ApplicationPlugins.LoadBalancer
181 } 181 }
182 182
183/* 183/*
184 public void recevie() { 184 public void receive()
185 if (mConnection == null) { 185 {
186 if (mConnection == null)
187 {
186 throw new Exception("client not initialized"); 188 throw new Exception("client not initialized");
187 } 189 }
188 try 190 try
@@ -191,7 +193,7 @@ namespace OpenSim.ApplicationPlugins.LoadBalancer
191 } 193 }
192 catch (Exception e) 194 catch (Exception e)
193 { 195 {
194 Console.WriteLine(e.ToString()); 196 Console.WriteLine(e.ToString());
195 mConnection = null; 197 mConnection = null;
196 } 198 }
197 } 199 }