wasSharpNET – Diff between revs 10 and 11

Subversion Repositories:
Rev:
Show entire fileRegard whitespace
Rev 10 Rev 11
Line 12... Line 12...
12 namespace wasSharpNET.Network.HTTP 12 namespace wasSharpNET.Network.HTTP
13 { 13 {
14 public abstract class HTTPServer 14 public abstract class HTTPServer
15 { 15 {
16 private int activeRequests; 16 private int activeRequests;
-   17  
17 private readonly HttpListener HTTPListener = new HttpListener() 18 private readonly HttpListener HTTPListener = new HttpListener()
18 { 19 {
19 AuthenticationSchemes = AuthenticationSchemes.None 20 AuthenticationSchemes = AuthenticationSchemes.None
20 }; 21 };
-   22  
21 private int processedRequests; 23 private int processedRequests;
Line 22... Line 24...
22   24  
23 private readonly AutoResetEvent StopServerEvent = new AutoResetEvent(false); 25 private readonly AutoResetEvent StopServerEvent = new AutoResetEvent(false);