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