Browse Source

Revert "Logging exception"

This reverts commit 566a0fcfa5.
tags/3.4.2
noisyfox 8 years ago
parent
commit
7a39c2c71f
2 changed files with 2 additions and 2 deletions
  1. +1
    -2
      shadowsocks-csharp/Controller/Service/HttpHandler.cs
  2. +1
    -0
      shadowsocks-csharp/Controller/ShadowsocksController.cs

+ 1
- 2
shadowsocks-csharp/Controller/Service/HttpHandler.cs View File

@@ -60,8 +60,7 @@ namespace Shadowsocks.Controller.Service

private void OnException(Exception ex, object state)
{
Logging.LogUsefulException(ex);
Close();
throw ex;
}

private static readonly Regex HttpRequestHeaderRegex = new Regex(@"^([A-Z]+?) ([^\s]+) HTTP/1\.\d$");


+ 1
- 0
shadowsocks-csharp/Controller/ShadowsocksController.cs View File

@@ -463,6 +463,7 @@ namespace Shadowsocks.Controller
services.Add(_pacServer);
services.Add(tcpRelay);
services.Add(udpRelay);
//services.Add(new Http2Socks5(_config.localPort));
_listener = new Listener(services);
_listener.Start(_config);
}


Loading…
Cancel
Save