v2ray-core/proxy/vmess/inbound/config.proto

21 lines
393 B
Protocol Buffer
Raw Normal View History

2016-09-24 21:11:58 +00:00
syntax = "proto3";
package com.v2ray.core.proxy.vmess.inbound;
option go_package = "inbound";
import "v2ray.com/core/common/protocol/user.proto";
message DetourConfig {
string to = 1;
}
message DefaultConfig {
uint32 alter_id = 1;
uint32 level = 2;
}
message Config {
repeated com.v2ray.core.common.protocol.User user = 1;
DefaultConfig default = 2;
DetourConfig detour = 3;
}