github.com/EagleQL/Xray-core@v1.4.3/app/commander/config.proto (about)

     1  syntax = "proto3";
     2  
     3  package xray.app.commander;
     4  option csharp_namespace = "Xray.App.Commander";
     5  option go_package = "github.com/xtls/xray-core/app/commander";
     6  option java_package = "com.xray.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 xray.common.serial.TypedMessage service = 2;
    18  }
    19  
    20  // ReflectionConfig is the placeholder config for ReflectionService.
    21  message ReflectionConfig {}