1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-29 15:26:29 -04:00
v2fly/app/dispatcher/config.proto
2016-12-23 16:54:15 +01:00

18 lines
380 B
Protocol Buffer

syntax = "proto3";
package v2ray.core.app.dispatcher;
option csharp_namespace = "V2Ray.Core.App.Dispatcher";
option go_package = "dispatcher";
option java_package = "com.v2ray.core.app.dispatcher";
option java_outer_classname = "ConfigProto";
message Config {
enum FixDestination {
Auto = 0;
Enabled = 1;
Disabled = 2;
}
FixDestination fix_destination = 1;
}