github.com/xtls/xray-core@v1.8.12-0.20240518155711-3168d27b0bdb/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  
    16    // Network address of commander grpc service.
    17    string listen = 3;
    18  
    19    // Services that supported by this server. All services must implement Service
    20    // interface.
    21    repeated xray.common.serial.TypedMessage service = 2;
    22  }
    23  
    24  // ReflectionConfig is the placeholder config for ReflectionService.
    25  message ReflectionConfig {}