1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-10-01 00:06:11 -04:00
v2fly/proxy/freedom/config.proto

13 lines
226 B
Protocol Buffer
Raw Normal View History

2016-08-25 15:55:49 -04:00
syntax = "proto3";
package com.v2ray.core.proxy.freedom;
option go_package = "freedom";
message Config {
enum DomainStrategy {
AS_IS = 0;
USE_IP = 1;
}
DomainStrategy domainStrategy = 1;
uint32 timeout = 2;
}