github.com/Uhtred009/v2ray-core-1@v4.31.2+incompatible/app/commander/config.proto (about)

     1  syntax = "proto3";
     2  
     3  package v2ray.core.app.commander;
     4  option csharp_namespace = "V2Ray.Core.App.Commander";
     5  option go_package = "v2ray.com/core/app/commander";
     6  option java_package = "com.v2ray.core.app.commander";
     7  option java_multiple_files = true;
     8  
     9  import "common/serial/typed_message.proto";
    10  
    11  // Config is the settings for Commander.
    12  message Config {
    13    // Tag of the outbound handler that handles grpc connections.
    14    string tag = 1;
    15    // Services that supported by this server. All services must implement Service
    16    // interface.
    17    repeated v2ray.core.common.serial.TypedMessage service = 2;
    18  }