github.com/v2fly/v2ray-core/v5@v5.16.2-0.20240507031116-8191faa6e095/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 = "github.com/v2fly/v2ray-core/v5/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. 13 string flow = 2; 14 // Encryption settings. Only applies to client side, and only accepts "none" for now. 15 string encryption = 3; 16 }