mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
618 B
24 lines
618 B
3 years ago
|
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 {}
|