add portforward config to gui (#1198)

* Added port forwarding to the GUI interface
* Separated port forwarding into a separate drop-down menu
This commit is contained in:
FuturePrayer
2025-08-09 09:50:09 +08:00
committed by GitHub
parent 8cdb27d43d
commit 37b24164b6
6 changed files with 164 additions and 2 deletions
+9
View File
@@ -72,6 +72,15 @@ message NetworkConfig {
optional bool enable_quic_proxy = 45;
optional bool disable_quic_input = 46;
repeated PortForwardConfig port_forwards = 48;
}
message PortForwardConfig {
string bind_ip = 1;
uint32 bind_port = 2;
string dst_ip = 3;
uint32 dst_port = 4;
string proto = 5;
}
message MyNodeInfo {