1
0
Fork 0
mirror of https://github.com/proxysu/ProxySU.git synced 2025-04-04 06:13:37 +03:00

优化curl超时设置

This commit is contained in:
ProxySU 2020-11-03 11:54:25 +08:00
parent 93bed9f261
commit b404c3e6c9
4 changed files with 7 additions and 7 deletions

View file

@ -5,7 +5,7 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:ProxySU"
mc:Ignorable="d"
Title="ProxySU - v2.4.18" Height="675" Width="650">
Title="ProxySU - v2.4.19-beta1" Height="675" Width="650">
<!--以下样式参考自https://yq.aliyun.com/articles/331878
https://docs.microsoft.com/en-us/dotnet/desktop-wpf/fundamentals/styles-templates-overview-->
<Window.Resources>

View file

@ -7348,11 +7348,11 @@ namespace ProxySU
ipv6 = String.Empty;
//sshShellCommand = @"curl -4 ip.sb";
sshShellCommand = @"curl -s https://api.ip.sb/ip --ipv4";
sshShellCommand = @"curl -s https://api.ip.sb/ip --ipv4 --max-time 8";
currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand);
ipv4 = currentShellCommandResult.TrimEnd('\r', '\n');
sshShellCommand = @"curl -s https://api.ip.sb/ip --ipv6";
sshShellCommand = @"curl -s https://api.ip.sb/ip --ipv6 --max-time 8";
currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand);
ipv6 = currentShellCommandResult.TrimEnd('\r', '\n');
@ -8088,11 +8088,11 @@ namespace ProxySU
onlyIpv6 = false;
//sshShellCommand = @"curl -4 ip.sb";
sshShellCommand = @"curl -s https://api.ip.sb/ip --ipv4";
sshShellCommand = @"curl -s https://api.ip.sb/ip --ipv4 --max-time 8";
currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand);
ipv4 = currentShellCommandResult.TrimEnd('\r', '\n');
sshShellCommand = @"curl -s https://api.ip.sb/ip --ipv6";
sshShellCommand = @"curl -s https://api.ip.sb/ip --ipv6 --max-time 8";
currentShellCommandResult = MainWindowsShowCmd(client, sshShellCommand);
ipv6 = currentShellCommandResult.TrimEnd('\r', '\n');

View file

@ -51,5 +51,5 @@ using System.Windows;
// 可以指定所有值,也可以使用以下所示的 "*" 预置版本号和修订号
// 方法是按如下所示使用“*”: :
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("2.4.18.0")]
[assembly: AssemblyFileVersion("2.4.18.0")]
[assembly: AssemblyVersion("2.4.19.0")]
[assembly: AssemblyFileVersion("2.4.19.0")]

Binary file not shown.