aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/BaseHttpServer.cs
diff options
context:
space:
mode:
authorAdam Frisby2008-11-08 16:22:36 +0000
committerAdam Frisby2008-11-08 16:22:36 +0000
commitb0a90642ded3607c3b8448547bc020261c68f324 (patch)
treeb8644cbc023d7c8a6c2f981b44e1679c8d73e28e /OpenSim/Framework/Servers/BaseHttpServer.cs
parent* Implementing first of the 0.6 IClientAPI Changes (diff)
downloadopensim-SC_OLD-b0a90642ded3607c3b8448547bc020261c68f324.zip
opensim-SC_OLD-b0a90642ded3607c3b8448547bc020261c68f324.tar.gz
opensim-SC_OLD-b0a90642ded3607c3b8448547bc020261c68f324.tar.bz2
opensim-SC_OLD-b0a90642ded3607c3b8448547bc020261c68f324.tar.xz
* 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.
Diffstat (limited to 'OpenSim/Framework/Servers/BaseHttpServer.cs')
-rw-r--r--OpenSim/Framework/Servers/BaseHttpServer.cs4
1 files changed, 1 insertions, 3 deletions
diff --git a/OpenSim/Framework/Servers/BaseHttpServer.cs b/OpenSim/Framework/Servers/BaseHttpServer.cs
index 98b44db..f8964b8 100644
--- a/OpenSim/Framework/Servers/BaseHttpServer.cs
+++ b/OpenSim/Framework/Servers/BaseHttpServer.cs
@@ -26,14 +26,12 @@
26 */ 26 */
27 27
28using System; 28using System;
29using System.Diagnostics;
30using System.Collections; 29using System.Collections;
31using System.Collections.Generic; 30using System.Collections.Generic;
32using System.IO; 31using System.IO;
33using System.Net; 32using System.Net;
34using System.Net.Sockets; 33using System.Net.Sockets;
35using System.Reflection; 34using System.Reflection;
36using System.Security.Cryptography.X509Certificates;
37using System.Text; 35using System.Text;
38using System.Threading; 36using System.Threading;
39using System.Xml; 37using System.Xml;
@@ -63,7 +61,7 @@ namespace OpenSim.Framework.Servers
63 61
64 protected uint m_port; 62 protected uint m_port;
65 protected uint m_sslport; 63 protected uint m_sslport;
66 protected bool m_ssl = false; 64 protected bool m_ssl;
67 protected bool m_firstcaps = true; 65 protected bool m_firstcaps = true;
68 protected string m_SSLCommonName = ""; 66 protected string m_SSLCommonName = "";
69 67