mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
546 B
25 lines
546 B
syntax = "proto3";
|
|
|
|
package xray.proxy.vmess.inbound;
|
|
option csharp_namespace = "Xray.Proxy.Vmess.Inbound";
|
|
option go_package = "github.com/xtls/xray-core/proxy/vmess/inbound";
|
|
option java_package = "com.xray.proxy.vmess.inbound";
|
|
option java_multiple_files = true;
|
|
|
|
import "common/protocol/user.proto";
|
|
|
|
message DetourConfig {
|
|
string to = 1;
|
|
}
|
|
|
|
message DefaultConfig {
|
|
uint32 level = 2;
|
|
}
|
|
|
|
message Config {
|
|
repeated xray.common.protocol.User user = 1;
|
|
DefaultConfig default = 2;
|
|
DetourConfig detour = 3;
|
|
// 4 is for legacy setting
|
|
}
|