github.com/xmplusdev/xray-core@v1.8.10/proxy/vmess/account.proto (about) 1 syntax = "proto3"; 2 3 package xray.proxy.vmess; 4 option csharp_namespace = "Xray.Proxy.Vmess"; 5 option go_package = "github.com/xmplusdev/xray-core/proxy/vmess"; 6 option java_package = "com.xray.proxy.vmess"; 7 option java_multiple_files = true; 8 9 import "common/protocol/headers.proto"; 10 11 message Account { 12 // ID of the account, in the form of a UUID, e.g., 13 // "66ad4540-b58c-4ad2-9926-ea63445a9b57". 14 string id = 1; 15 // Security settings. Only applies to client side. 16 xray.common.protocol.SecurityConfig security_settings = 3; 17 // Define tests enabled for this account 18 string tests_enabled = 4; 19 }