mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
591 B
18 lines
591 B
syntax = "proto3";
|
|
|
|
package v2ray.core.app.commander;
|
|
option csharp_namespace = "V2Ray.Core.App.Commander";
|
|
option go_package = "v2ray.com/core/app/commander";
|
|
option java_package = "com.v2ray.core.app.commander";
|
|
option java_multiple_files = true;
|
|
|
|
import "common/serial/typed_message.proto";
|
|
|
|
// Config is the settings for Commander.
|
|
message Config {
|
|
// Tag of the outbound handler that handles grpc connections.
|
|
string tag = 1;
|
|
// Services that supported by this server. All services must implement Service interface.
|
|
repeated v2ray.core.common.serial.TypedMessage service = 2;
|
|
}
|