mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-04 20:19:19 +02:00
9112cfd39c
* Remove legacy Vmess * validators * protos
25 lines
546 B
Protocol Buffer
25 lines
546 B
Protocol Buffer
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
|
|
}
|