config.proto 587 B

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