config.proto 684 B

123456789101112131415161718192021
  1. syntax = "proto3";
  2. package v2ray.core.app.commander;
  3. option csharp_namespace = "V2Ray.Core.App.Commander";
  4. option go_package = "github.com/v2fly/v2ray-core/v4/app/commander";
  5. option java_package = "com.v2ray.core.app.commander";
  6. option java_multiple_files = true;
  7. import "google/protobuf/any.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
  13. // interface.
  14. repeated google.protobuf.Any service = 2;
  15. }
  16. // ReflectionConfig is the placeholder config for ReflectionService.
  17. message ReflectionConfig {}