mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-18 18:36:11 -05:00
13 lines
226 B
Protocol Buffer
13 lines
226 B
Protocol Buffer
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;
|
|
} |