command.proto 645 B

12345678910111213141516171819202122232425
  1. syntax = "proto3";
  2. package v2ray.core.app.observatory.command;
  3. option csharp_namespace = "V2Ray.Core.App.Observatory.Command";
  4. option go_package = "github.com/v2fly/v2ray-core/v5/app/observatory/command";
  5. option java_package = "com.v2ray.core.app.observatory.command";
  6. option java_multiple_files = true;
  7. import "app/observatory/config.proto";
  8. message GetOutboundStatusRequest {
  9. string Tag = 1;
  10. }
  11. message GetOutboundStatusResponse {
  12. v2ray.core.app.observatory.ObservationResult status = 1;
  13. }
  14. service ObservatoryService {
  15. rpc GetOutboundStatus(GetOutboundStatusRequest)
  16. returns (GetOutboundStatusResponse) {}
  17. }
  18. message Config {}