1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-12 06:54:23 -04:00
v2fly/proxy/dokodemo/config.proto

26 lines
766 B
Protocol Buffer
Raw Normal View History

2016-09-22 10:49:20 -04:00
syntax = "proto3";
2016-09-26 09:14:16 -04:00
package v2ray.core.proxy.dokodemo;
2016-12-22 18:24:28 -05:00
option csharp_namespace = "V2Ray.Core.Proxy.Dokodemo";
option go_package = "v2ray.com/core/proxy/dokodemo";
2016-09-26 09:14:16 -04:00
option java_package = "com.v2ray.core.proxy.dokodemo";
2017-02-03 17:15:10 -05:00
option java_multiple_files = true;
2016-09-22 10:49:20 -04:00
import "common/net/address.proto";
import "common/net/network.proto";
2016-09-22 10:49:20 -04:00
message Config {
2016-10-12 12:43:55 -04:00
v2ray.core.common.net.IPOrDomain address = 1;
2016-09-22 10:49:20 -04:00
uint32 port = 2;
2018-11-20 10:58:26 -05:00
// List of networks that the Dokodemo accepts.
// Deprecated. Use networks.
v2ray.core.common.net.NetworkList network_list = 3 [deprecated = true];
// List of networks that the Dokodemo accepts.
repeated v2ray.core.common.net.Network networks = 7;
2017-11-27 16:09:30 -05:00
uint32 timeout = 4 [deprecated = true];
2016-09-22 10:49:20 -04:00
bool follow_redirect = 5;
2017-11-27 16:09:30 -05:00
uint32 user_level = 6;
}