优化读写ngrok.cfg配置文件代码。
This commit is contained in:
parent
f1efc46a56
commit
92dccfbe27
@ -76,7 +76,7 @@ namespace net.nutcore.aliddns
|
||||
textBox_serverAddr.Text = config.server_addr;
|
||||
textBox_subDomain.Text = config.tunnels.website_http.subdomain.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_lanPort1.Text = config.tunnels.tcp1.proto.tcp.ToString();
|
||||
textBox_remotePort2.Text = config.tunnels.tcp2.remote_port.ToString();
|
||||
|
@ -37,7 +37,6 @@ namespace net.nutcore.aliddns
|
||||
public class Tunnel
|
||||
{
|
||||
public Protocol website_http { get; set; }
|
||||
public Protocol website_https { get; set; }
|
||||
public Protocol tcp1 { get; set; }
|
||||
public Protocol tcp2 { get; set; }
|
||||
public Protocol tcp3 { get; set; }
|
||||
@ -93,15 +92,7 @@ namespace net.nutcore.aliddns
|
||||
subdomain = "www",
|
||||
proto = new Proto
|
||||
{
|
||||
http = 80
|
||||
}
|
||||
|
||||
},
|
||||
website_https = new Protocol
|
||||
{
|
||||
subdomain = "www",
|
||||
proto = new Proto
|
||||
{
|
||||
http = 80,
|
||||
https = 443
|
||||
}
|
||||
},
|
||||
@ -176,8 +167,7 @@ namespace net.nutcore.aliddns
|
||||
config.server_addr = server_addr;
|
||||
config.tunnels.website_http.subdomain = subdomain;
|
||||
config.tunnels.website_http.proto.http = http;
|
||||
config.tunnels.website_https.subdomain = subdomain;
|
||||
config.tunnels.website_https.proto.https = https;
|
||||
config.tunnels.website_http.proto.https = https;
|
||||
config.tunnels.tcp1.remote_port = remoteport1;
|
||||
config.tunnels.tcp1.proto.tcp = lanport1;
|
||||
config.tunnels.tcp2.remote_port = remoteport2;
|
||||
@ -206,21 +196,14 @@ namespace net.nutcore.aliddns
|
||||
case 1:
|
||||
exec.Arguments += "website_http";
|
||||
break;
|
||||
|
||||
case 2:
|
||||
exec.Arguments += "website_http website_https";
|
||||
exec.Arguments += "website_http tcp1";
|
||||
break;
|
||||
|
||||
case 3:
|
||||
exec.Arguments += "website_http website_https tcp1";
|
||||
exec.Arguments += "website_http tcp1 tcp2";
|
||||
break;
|
||||
|
||||
case 4:
|
||||
exec.Arguments += "website_http website_https tcp1 tcp2";
|
||||
break;
|
||||
|
||||
default:
|
||||
exec.Arguments += "website_http website_https tcp1 tcp2 tcp3";
|
||||
exec.Arguments += "website_http tcp1 tcp2 tcp3";
|
||||
break;
|
||||
}
|
||||
|
||||
|
@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
|
||||
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值,
|
||||
// 方法是按如下所示使用“*”: :
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("3.8.6.5")]
|
||||
[assembly: AssemblyFileVersion("3.8.6.5")]
|
||||
[assembly: AssemblyVersion("3.8.6.6")]
|
||||
[assembly: AssemblyFileVersion("3.8.6.6")]
|
||||
|
@ -1,3 +1,6 @@
|
||||
v3.8.6.6
|
||||
1、优化读写ngrok.cfg配置文件代码。
|
||||
|
||||
v3.8.6.5
|
||||
1、增加ngrok https穿透。
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user