github.com/Uhtred009/v2ray-core-1@v4.31.2+incompatible/proxy/vless/account.proto (about) 1 syntax = "proto3"; 2 3 package v2ray.core.proxy.vless; 4 option csharp_namespace = "V2Ray.Core.Proxy.Vless"; 5 option go_package = "v2ray.com/core/proxy/vless"; 6 option java_package = "com.v2ray.core.proxy.vless"; 7 option java_multiple_files = true; 8 9 message Account { 10 // ID of the account, in the form of a UUID, e.g., "66ad4540-b58c-4ad2-9926-ea63445a9b57". 11 string id = 1; 12 // Flow settings. May be "xtls-rprx-origin". 13 string flow = 2; 14 // Encryption settings. Only applies to client side, and only accepts "none" for now. 15 string encryption = 3; 16 }