github.com/eagleql/xray-core@v1.4.4/proxy/dokodemo/config.proto (about)

     1  syntax = "proto3";
     2  
     3  package xray.proxy.dokodemo;
     4  option csharp_namespace = "Xray.Proxy.Dokodemo";
     5  option go_package = "github.com/eagleql/xray-core/proxy/dokodemo";
     6  option java_package = "com.xray.proxy.dokodemo";
     7  option java_multiple_files = true;
     8  
     9  import "common/net/address.proto";
    10  import "common/net/network.proto";
    11  
    12  message Config {
    13    xray.common.net.IPOrDomain address = 1;
    14    uint32 port = 2;
    15  
    16    // List of networks that the Dokodemo accepts.
    17    // Deprecated. Use networks.
    18    xray.common.net.NetworkList network_list = 3 [deprecated = true];
    19    // List of networks that the Dokodemo accepts.
    20    repeated xray.common.net.Network networks = 7;
    21  
    22    uint32 timeout = 4 [deprecated = true];
    23    bool follow_redirect = 5;
    24    uint32 user_level = 6;
    25  }