1
mirror of https://github.com/XTLS/Xray-core.git synced 2025-12-13 13:19:48 +04:00
Files
xray-core/proxy/vless/account.proto

22 lines
574 B
Protocol Buffer
Raw Permalink Normal View History

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;
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;
2020-11-25 19:01:53 +08:00
string encryption = 3;
uint32 xorMode = 4;
uint32 seconds = 5;
string padding = 6;
2024-04-13 14:55:05 -04:00
// Seed settings. Details TBD
string seed = 7;
2020-11-25 19:01:53 +08:00
}