mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-05 14:43:03 +00:00
24 lines
618 B
Protocol Buffer
24 lines
618 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package xray.core.app.observatory.command;
|
||
|
option csharp_namespace = "Xray.Core.App.Observatory.Command";
|
||
|
option go_package = "github.com/xtls/xray-core/app/observatory/command";
|
||
|
option java_package = "com.xray.core.app.observatory.command";
|
||
|
option java_multiple_files = true;
|
||
|
|
||
|
import "app/observatory/config.proto";
|
||
|
|
||
|
message GetOutboundStatusRequest {
|
||
|
}
|
||
|
|
||
|
message GetOutboundStatusResponse {
|
||
|
xray.core.app.observatory.ObservationResult status = 1;
|
||
|
}
|
||
|
|
||
|
service ObservatoryService {
|
||
|
rpc GetOutboundStatus(GetOutboundStatusRequest)
|
||
|
returns (GetOutboundStatusResponse) {}
|
||
|
}
|
||
|
|
||
|
|
||
|
message Config {}
|