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;
|
|
|
|
|
|
2026-03-23 09:49:32 +00:00
|
|
|
import "app/proxyman/config.proto";
|
|
|
|
|
|
2025-09-09 14:19:12 +00:00
|
|
|
message Reverse {
|
|
|
|
|
string tag = 1;
|
2026-03-23 09:49:32 +00:00
|
|
|
xray.app.proxyman.SniffingConfig sniffing = 2;
|
2025-09-09 14:19:12 +00:00
|
|
|
}
|
|
|
|
|
|
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;
|
2025-12-01 13:10:54 +00:00
|
|
|
|
|
|
|
|
uint32 testpre = 8;
|
|
|
|
|
repeated uint32 testseed = 9;
|
2020-11-25 19:01:53 +08:00
|
|
|
}
|