Browse Source

change PAC port into 8093

tags/2.3
clowwindy 9 years ago
parent
commit
3e70289944
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      shadowsocks-csharp/Controller/PACServer.cs
  2. +1
    -1
      shadowsocks-csharp/Controller/SystemProxy.cs

+ 1
- 1
shadowsocks-csharp/Controller/PACServer.cs View File

@@ -13,7 +13,7 @@ namespace Shadowsocks.Controller
{ {
class PACServer class PACServer
{ {
private static int PORT = 8090;
private static int PORT = 8093;
private static string PAC_FILE = "pac.txt"; private static string PAC_FILE = "pac.txt";
private static Configuration config; private static Configuration config;


+ 1
- 1
shadowsocks-csharp/Controller/SystemProxy.cs View File

@@ -33,7 +33,7 @@ namespace Shadowsocks.Controller
true); true);
registry.SetValue("ProxyEnable", 0); registry.SetValue("ProxyEnable", 0);
registry.SetValue("ProxyServer", ""); registry.SetValue("ProxyServer", "");
registry.SetValue("AutoConfigURL", "http://127.0.0.1:8090/pac?t=" + GetTimestamp(DateTime.Now));
registry.SetValue("AutoConfigURL", "http://127.0.0.1:8093/pac?t=" + GetTimestamp(DateTime.Now));
SystemProxy.NotifyIE(); SystemProxy.NotifyIE();
//Must Notify IE first, or the connections do not chanage //Must Notify IE first, or the connections do not chanage
CopyProxySettingFromLan(); CopyProxySettingFromLan();


Loading…
Cancel
Save