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