github.com/imannamdari/v2ray-core/v5@v5.0.5/app/observatory/command/command.proto (about)

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