* support proxy tcp stream with kcp to improve experience of tcp over udp
* update rust version
* make subnet proxy route metrics lower in windows.
This commit is contained in:
Sijie.Sun
2025-01-26 00:41:15 +08:00
committed by GitHub
parent 1194ee1c2d
commit 55a39491cb
19 changed files with 723 additions and 164 deletions
+7
View File
@@ -22,6 +22,13 @@ message FlagsInConfig {
bool multi_thread = 15;
CompressionAlgoPb data_compress_algo = 16;
bool bind_device = 17;
// should we convert all tcp streams into kcp streams
bool enable_kcp_proxy = 18;
// does this peer allow kcp input
bool disable_kcp_input = 19;
// allow relay kcp packets (for public server, this can reduce the throughput)
bool disable_relay_kcp = 20;
}
message RpcDescriptor {
+4
View File
@@ -205,3 +205,7 @@ message HandshakeRequest {
string network_name = 5;
bytes network_secret_digrest = 6;
}
message KcpConnData {
common.SocketAddr dst = 4;
}