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

     1  syntax = "proto3";
     2  
     3  package v2ray.core.proxy.dokodemo;
     4  option csharp_namespace = "V2Ray.Core.Proxy.Dokodemo";
     5  option go_package = "github.com/v2fly/v2ray-core/v4/proxy/dokodemo";
     6  option java_package = "com.v2ray.core.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    v2ray.core.common.net.IPOrDomain address = 1;
    14    uint32 port = 2;
    15  
    16    // List of networks that the Dokodemo accepts.
    17    // Deprecated. Use networks.
    18    v2ray.core.common.net.NetworkList network_list = 3 [deprecated = true];
    19    // List of networks that the Dokodemo accepts.
    20    repeated v2ray.core.common.net.Network networks = 7;
    21  
    22    uint32 timeout = 4 [deprecated = true];
    23    bool follow_redirect = 5;
    24    uint32 user_level = 6;
    25  }