github.com/v2fly/v2ray-core/v4@v4.45.2/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/v2fly/v2ray-core/v4/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 } 13 14 message GetOutboundStatusResponse { 15 v2ray.core.app.observatory.ObservationResult status = 1; 16 } 17 18 service ObservatoryService { 19 rpc GetOutboundStatus(GetOutboundStatusRequest) 20 returns (GetOutboundStatusResponse) {} 21 } 22 23 24 message Config {}