github.com/moqsien/xraycore@v1.8.5/app/observatory/command/command.proto (about)

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