* Made ClientLoop non-infinite, ClientLoop will now disengage when the client has logged out.

* Cleaned up a section of LLClientView
* Removed unused 'using' from HTTPServer 
* Please test this patch.
This commit is contained in:
Adam Frisby
2008-11-08 16:22:36 +00:00
parent 6d5248441d
commit b0a90642de
2 changed files with 20 additions and 33 deletions

View File

@@ -26,14 +26,12 @@
*/
using System;
using System.Diagnostics;
using System.Collections;
using System.Collections.Generic;
using System.IO;
using System.Net;
using System.Net.Sockets;
using System.Reflection;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Threading;
using System.Xml;
@@ -63,7 +61,7 @@ namespace OpenSim.Framework.Servers
protected uint m_port;
protected uint m_sslport;
protected bool m_ssl = false;
protected bool m_ssl;
protected bool m_firstcaps = true;
protected string m_SSLCommonName = "";