2020-11-25 19:01:53 +08:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
|
|
package xray.proxy.vless;
|
|
|
|
|
option csharp_namespace = "Xray.Proxy.Vless";
|
2020-12-04 09:36:16 +08:00
|
|
|
option go_package = "github.com/xtls/xray-core/proxy/vless";
|
2020-11-25 19:01:53 +08:00
|
|
|
option java_package = "com.xray.proxy.vless";
|
|
|
|
|
option java_multiple_files = true;
|
|
|
|
|
|
2025-09-09 14:19:12 +00:00
|
|
|
message Reverse {
|
|
|
|
|
string tag = 1;
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-25 19:01:53 +08:00
|
|
|
message Account {
|
|
|
|
|
// ID of the account, in the form of a UUID, e.g., "66ad4540-b58c-4ad2-9926-ea63445a9b57".
|
|
|
|
|
string id = 1;
|
2023-03-04 05:39:26 -05:00
|
|
|
// Flow settings. May be "xtls-rprx-vision".
|
2020-11-25 19:01:53 +08:00
|
|
|
string flow = 2;
|
2025-08-28 04:55:36 +00:00
|
|
|
|
2020-11-25 19:01:53 +08:00
|
|
|
string encryption = 3;
|
2025-08-28 04:55:36 +00:00
|
|
|
uint32 xorMode = 4;
|
|
|
|
|
uint32 seconds = 5;
|
2025-08-31 04:09:28 +00:00
|
|
|
string padding = 6;
|
2025-09-09 14:19:12 +00:00
|
|
|
|
|
|
|
|
Reverse reverse = 7;
|
2020-11-25 19:01:53 +08:00
|
|
|
}
|