From 3e70289944afcfeb90955636a1c36db88135b6b1 Mon Sep 17 00:00:00 2001 From: clowwindy Date: Thu, 4 Dec 2014 14:19:31 +0800 Subject: [PATCH] change PAC port into 8093 --- shadowsocks-csharp/Controller/PACServer.cs | 2 +- shadowsocks-csharp/Controller/SystemProxy.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/shadowsocks-csharp/Controller/PACServer.cs b/shadowsocks-csharp/Controller/PACServer.cs index 6e611b2b..a71fe3de 100755 --- a/shadowsocks-csharp/Controller/PACServer.cs +++ b/shadowsocks-csharp/Controller/PACServer.cs @@ -13,7 +13,7 @@ namespace Shadowsocks.Controller { class PACServer { - private static int PORT = 8090; + private static int PORT = 8093; private static string PAC_FILE = "pac.txt"; private static Configuration config; diff --git a/shadowsocks-csharp/Controller/SystemProxy.cs b/shadowsocks-csharp/Controller/SystemProxy.cs index a578752a..b2e585da 100755 --- a/shadowsocks-csharp/Controller/SystemProxy.cs +++ b/shadowsocks-csharp/Controller/SystemProxy.cs @@ -33,7 +33,7 @@ namespace Shadowsocks.Controller true); registry.SetValue("ProxyEnable", 0); 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(); //Must Notify IE first, or the connections do not chanage CopyProxySettingFromLan();