diff --git a/v2rayN/v2rayN/App.xaml.cs b/v2rayN/v2rayN/App.xaml.cs index d5b510b3c8..406cd3ac71 100644 --- a/v2rayN/v2rayN/App.xaml.cs +++ b/v2rayN/v2rayN/App.xaml.cs @@ -43,6 +43,7 @@ protected override void OnStartup(StartupEventArgs e) Init(); Logging.LoggingEnabled(_config.guiItem.enableLog); Logging.SaveLog($"v2rayN start up | {Utils.GetVersion()} | {Utils.GetExePath()}"); + Logging.SaveLog($"{Environment.OSVersion} - {(Environment.Is64BitOperatingSystem ? 64 : 32)}"); Logging.ClearLogs(); Thread.CurrentThread.CurrentUICulture = new(_config.uiItem.currentLanguage); diff --git a/v2rayN/v2rayN/Handler/ProxySetting.cs b/v2rayN/v2rayN/Handler/ProxySetting.cs index a6ce24542d..061ab88749 100644 --- a/v2rayN/v2rayN/Handler/ProxySetting.cs +++ b/v2rayN/v2rayN/Handler/ProxySetting.cs @@ -29,15 +29,23 @@ public static bool UnsetProxy() /// true: one of connection is successfully updated proxy settings public static bool SetProxy(string? strProxy, string? exceptions, int type) { - // set proxy for LAN - bool result = SetConnectionProxy(null, strProxy, exceptions, type); - // set proxy for dial up connections - var connections = EnumerateRasEntries(); - foreach (var connection in connections) + try { - result |= SetConnectionProxy(connection, strProxy, exceptions, type); + // set proxy for LAN + bool result = SetConnectionProxy(null, strProxy, exceptions, type); + // set proxy for dial up connections + var connections = EnumerateRasEntries(); + foreach (var connection in connections) + { + result |= SetConnectionProxy(connection, strProxy, exceptions, type); + } + return result; + } + catch (Exception ex) + { + Logging.SaveLog(ex.Message, ex); + return false; } - return result; } private static bool SetConnectionProxy(string? connectionName, string? strProxy, string? exceptions, int type) diff --git a/v2rayN/v2rayN/Handler/SysProxyHandle.cs b/v2rayN/v2rayN/Handler/SysProxyHandle.cs index 679c3aa5cd..6bd261f914 100644 --- a/v2rayN/v2rayN/Handler/SysProxyHandle.cs +++ b/v2rayN/v2rayN/Handler/SysProxyHandle.cs @@ -6,30 +6,7 @@ namespace v2rayN.Handler { public static class SysProxyHandle { - //private const string _userWininetConfigFile = "user-wininet.json"; - - //private static string _queryStr; - - // In general, this won't change - // format: - // - // - // - // - - private enum RET_ERRORS : int - { - RET_NO_ERROR = 0, - INVALID_FORMAT = 1, - NO_PERMISSION = 2, - SYSCALL_FAILED = 3, - NO_MEMORY = 4, - INVAILD_OPTION_COUNT = 5, - }; - - static SysProxyHandle() - { - } + private const string _regPath = @"Software\Microsoft\Windows\CurrentVersion\Internet Settings"; public static bool UpdateSysProxy(Config config, bool forceDisable) { @@ -65,11 +42,17 @@ public static bool UpdateSysProxy(Config config, bool forceDisable) .Replace("{http_port}", port.ToString()) .Replace("{socks_port}", portSocks.ToString()); } - ProxySetting.SetProxy(strProxy, strExceptions, 2); // set a named proxy + if (!ProxySetting.SetProxy(strProxy, strExceptions, 2)) + { + SetProxy(strProxy, strExceptions, 2); + } } else if (type == ESysProxyType.ForcedClear) { - ProxySetting.UnsetProxy(); // set to no proxy + if (!ProxySetting.UnsetProxy()) + { + UnsetProxy(); + } } else if (type == ESysProxyType.Unchanged) { @@ -78,7 +61,10 @@ public static bool UpdateSysProxy(Config config, bool forceDisable) { PacHandler.Start(Utils.GetConfigPath(), port, portPac); var strProxy = $"{Global.HttpProtocol}{Global.Loopback}:{portPac}/pac?t={DateTime.Now.Ticks}"; - ProxySetting.SetProxy(strProxy, "", 4); // use pac script url for auto-config proxy + if (!ProxySetting.SetProxy(strProxy, "", 4)) + { + SetProxy(strProxy, "", 4); + } } if (type != ESysProxyType.Pac) @@ -95,14 +81,38 @@ public static bool UpdateSysProxy(Config config, bool forceDisable) public static void ResetIEProxy4WindowsShutDown() { - try + SetProxy(null, null, 1); + } + + private static void UnsetProxy() + { + SetProxy(null, null, 1); + } + + private static bool SetProxy(string? strProxy, string? exceptions, int type) + { + if (type == 1) { - //TODO To be verified - Utils.RegWriteValue(@"Software\Microsoft\Windows\CurrentVersion\Internet Settings", "ProxyEnable", 0); + Utils.RegWriteValue(_regPath, "ProxyEnable", 0); + Utils.RegWriteValue(_regPath, "ProxyServer", string.Empty); + Utils.RegWriteValue(_regPath, "ProxyOverride", string.Empty); + Utils.RegWriteValue(_regPath, "AutoConfigURL", string.Empty); } - catch + if (type == 2) { + Utils.RegWriteValue(_regPath, "ProxyEnable", 1); + Utils.RegWriteValue(_regPath, "ProxyServer", strProxy ?? string.Empty); + Utils.RegWriteValue(_regPath, "ProxyOverride", exceptions ?? string.Empty); + Utils.RegWriteValue(_regPath, "AutoConfigURL", string.Empty); } + else if (type == 4) + { + Utils.RegWriteValue(_regPath, "ProxyEnable", 0); + Utils.RegWriteValue(_regPath, "ProxyServer", string.Empty); + Utils.RegWriteValue(_regPath, "ProxyOverride", string.Empty); + Utils.RegWriteValue(_regPath, "AutoConfigURL", strProxy ?? string.Empty); + } + return true; } } } \ No newline at end of file