github.com/xraypb/xray-core@v1.6.6/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/xraypb/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 // Number of alternative IDs. Client and server must share the same number. 16 uint32 alter_id = 2; 17 // Security settings. Only applies to client side. 18 xray.common.protocol.SecurityConfig security_settings = 3; 19 // Define tests enabled for this account 20 string tests_enabled = 4; 21 }