1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-03 06:30:42 +00:00
v2fly/app/commander/config.proto

18 lines
591 B
Protocol Buffer
Raw Normal View History

2018-02-05 22:38:24 +00:00
syntax = "proto3";
package v2ray.core.app.commander;
option csharp_namespace = "V2Ray.Core.App.Commander";
option go_package = "v2ray.com/core/app/commander";
2018-02-05 22:38:24 +00:00
option java_package = "com.v2ray.core.app.commander";
option java_multiple_files = true;
import "common/serial/typed_message.proto";
2018-02-08 22:24:35 +00:00
// Config is the settings for Commander.
2018-02-05 22:38:24 +00:00
message Config {
2018-02-08 22:24:35 +00:00
// Tag of the outbound handler that handles grpc connections.
2018-02-05 22:38:24 +00:00
string tag = 1;
2018-02-08 22:24:35 +00:00
// Services that supported by this server. All services must implement Service interface.
repeated v2ray.core.common.serial.TypedMessage service = 2;
2018-02-05 22:38:24 +00:00
}