优化读写ngrok.cfg配置文件代码。

This commit is contained in:
wisdomwei201804 2020-02-15 15:05:58 +08:00
parent f1efc46a56
commit 92dccfbe27
4 changed files with 11 additions and 25 deletions

View File

@ -76,7 +76,7 @@ namespace net.nutcore.aliddns
textBox_serverAddr.Text = config.server_addr; textBox_serverAddr.Text = config.server_addr;
textBox_subDomain.Text = config.tunnels.website_http.subdomain.ToString(); textBox_subDomain.Text = config.tunnels.website_http.subdomain.ToString();
textBox_lanHttp.Text = config.tunnels.website_http.proto.http.ToString(); textBox_lanHttp.Text = config.tunnels.website_http.proto.http.ToString();
textBox_lanHttps.Text = config.tunnels.website_https.proto.https.ToString(); textBox_lanHttps.Text = config.tunnels.website_http.proto.https.ToString();
textBox_remotePort1.Text = config.tunnels.tcp1.remote_port.ToString(); textBox_remotePort1.Text = config.tunnels.tcp1.remote_port.ToString();
textBox_lanPort1.Text = config.tunnels.tcp1.proto.tcp.ToString(); textBox_lanPort1.Text = config.tunnels.tcp1.proto.tcp.ToString();
textBox_remotePort2.Text = config.tunnels.tcp2.remote_port.ToString(); textBox_remotePort2.Text = config.tunnels.tcp2.remote_port.ToString();

View File

@ -37,7 +37,6 @@ namespace net.nutcore.aliddns
public class Tunnel public class Tunnel
{ {
public Protocol website_http { get; set; } public Protocol website_http { get; set; }
public Protocol website_https { get; set; }
public Protocol tcp1 { get; set; } public Protocol tcp1 { get; set; }
public Protocol tcp2 { get; set; } public Protocol tcp2 { get; set; }
public Protocol tcp3 { get; set; } public Protocol tcp3 { get; set; }
@ -93,15 +92,7 @@ namespace net.nutcore.aliddns
subdomain = "www", subdomain = "www",
proto = new Proto proto = new Proto
{ {
http = 80 http = 80,
}
},
website_https = new Protocol
{
subdomain = "www",
proto = new Proto
{
https = 443 https = 443
} }
}, },
@ -176,8 +167,7 @@ namespace net.nutcore.aliddns
config.server_addr = server_addr; config.server_addr = server_addr;
config.tunnels.website_http.subdomain = subdomain; config.tunnels.website_http.subdomain = subdomain;
config.tunnels.website_http.proto.http = http; config.tunnels.website_http.proto.http = http;
config.tunnels.website_https.subdomain = subdomain; config.tunnels.website_http.proto.https = https;
config.tunnels.website_https.proto.https = https;
config.tunnels.tcp1.remote_port = remoteport1; config.tunnels.tcp1.remote_port = remoteport1;
config.tunnels.tcp1.proto.tcp = lanport1; config.tunnels.tcp1.proto.tcp = lanport1;
config.tunnels.tcp2.remote_port = remoteport2; config.tunnels.tcp2.remote_port = remoteport2;
@ -206,21 +196,14 @@ namespace net.nutcore.aliddns
case 1: case 1:
exec.Arguments += "website_http"; exec.Arguments += "website_http";
break; break;
case 2: case 2:
exec.Arguments += "website_http website_https"; exec.Arguments += "website_http tcp1";
break; break;
case 3: case 3:
exec.Arguments += "website_http website_https tcp1"; exec.Arguments += "website_http tcp1 tcp2";
break; break;
case 4:
exec.Arguments += "website_http website_https tcp1 tcp2";
break;
default: default:
exec.Arguments += "website_http website_https tcp1 tcp2 tcp3"; exec.Arguments += "website_http tcp1 tcp2 tcp3";
break; break;
} }

View File

@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值, //可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值,
// 方法是按如下所示使用“*”: : // 方法是按如下所示使用“*”: :
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("3.8.6.5")] [assembly: AssemblyVersion("3.8.6.6")]
[assembly: AssemblyFileVersion("3.8.6.5")] [assembly: AssemblyFileVersion("3.8.6.6")]

View File

@ -1,3 +1,6 @@
v3.8.6.6
1、优化读写ngrok.cfg配置文件代码。
v3.8.6.5 v3.8.6.5
1、增加ngrok https穿透。 1、增加ngrok https穿透。