diff options
author | Adam Frisby | 2008-11-08 16:22:36 +0000 |
---|---|---|
committer | Adam Frisby | 2008-11-08 16:22:36 +0000 |
commit | b0a90642ded3607c3b8448547bc020261c68f324 (patch) | |
tree | b8644cbc023d7c8a6c2f981b44e1679c8d73e28e /OpenSim/Framework/Servers | |
parent | * Implementing first of the 0.6 IClientAPI Changes (diff) | |
download | opensim-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')
-rw-r--r-- | OpenSim/Framework/Servers/BaseHttpServer.cs | 4 |
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 | ||
28 | using System; | 28 | using System; |
29 | using System.Diagnostics; | ||
30 | using System.Collections; | 29 | using System.Collections; |
31 | using System.Collections.Generic; | 30 | using System.Collections.Generic; |
32 | using System.IO; | 31 | using System.IO; |
33 | using System.Net; | 32 | using System.Net; |
34 | using System.Net.Sockets; | 33 | using System.Net.Sockets; |
35 | using System.Reflection; | 34 | using System.Reflection; |
36 | using System.Security.Cryptography.X509Certificates; | ||
37 | using System.Text; | 35 | using System.Text; |
38 | using System.Threading; | 36 | using System.Threading; |
39 | using System.Xml; | 37 | using 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 | ||