github.com/v2fly/v2ray-core/v4@v4.45.2/proxy/vmess/account.proto (about)

     1  syntax = "proto3";
     2  
     3  package v2ray.core.proxy.vmess;
     4  option csharp_namespace = "V2Ray.Core.Proxy.Vmess";
     5  option go_package = "github.com/v2fly/v2ray-core/v4/proxy/vmess";
     6  option java_package = "com.v2ray.core.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    v2ray.core.common.protocol.SecurityConfig security_settings = 3;
    19    // Define tests enabled for this account
    20    string tests_enabled = 4;
    21  }