github.com/xmplusdev/xmcore@v1.8.11-0.20240412132628-5518b55526af/proxy/vless/account.proto (about)

     1  syntax = "proto3";
     2  
     3  package xray.proxy.vless;
     4  option csharp_namespace = "Xray.Proxy.Vless";
     5  option go_package = "github.com/xmplusdev/xmcore/proxy/vless";
     6  option java_package = "com.xray.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-vision".
    13    string flow = 2;
    14    // Encryption settings. Only applies to client side, and only accepts "none" for now.
    15    string encryption = 3;
    16  }