mirror of
https://github.com/XTLS/Xray-core.git
synced 2026-05-08 14:13:22 +00:00
And reverts "refactor `mtu` to support setting IPv4/v6 separately" https://github.com/XTLS/Xray-core/pull/5891#issuecomment-4245677624 And fixes `autoOutboundsInterface` on Windows https://github.com/XTLS/Xray-core/pull/5887#issuecomment-4251719900 --------- Co-authored-by: LjhAUMEM <llnu14702@gmail.com>
18 lines
454 B
Protocol Buffer
18 lines
454 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package xray.proxy.tun;
|
|
option csharp_namespace = "Xray.Proxy.Tun";
|
|
option go_package = "github.com/xtls/xray-core/proxy/tun";
|
|
option java_package = "com.xray.proxy.tun";
|
|
option java_multiple_files = true;
|
|
|
|
message Config {
|
|
string name = 1;
|
|
uint32 MTU = 2;
|
|
repeated string gateway = 3;
|
|
repeated string DNS = 4;
|
|
uint32 user_level = 5;
|
|
repeated string auto_system_routing_table = 6;
|
|
string auto_outbounds_interface = 7;
|
|
}
|