github.com/xraypb/Xray-core@v1.8.1/proxy/vless/inbound/config.proto (about)

     1  syntax = "proto3";
     2  
     3  package xray.proxy.vless.inbound;
     4  option csharp_namespace = "Xray.Proxy.Vless.Inbound";
     5  option go_package = "github.com/xraypb/Xray-core/proxy/vless/inbound";
     6  option java_package = "com.xray.proxy.vless.inbound";
     7  option java_multiple_files = true;
     8  
     9  import "common/protocol/user.proto";
    10  
    11  message Fallback {
    12    string name = 1;
    13    string alpn = 2;
    14    string path = 3;
    15    string type = 4;
    16    string dest = 5;
    17    uint64 xver = 6;
    18  }
    19  
    20  message Config {
    21    repeated xray.common.protocol.User clients = 1;
    22    // Decryption settings. Only applies to server side, and only accepts "none"
    23    // for now.
    24    string decryption = 2;
    25    repeated Fallback fallbacks = 3;
    26  }