更新部分proto结构体文件
This commit is contained in:
@@ -5,79 +5,65 @@ package bilibili.api.probe.v1;
|
||||
//
|
||||
service Probe {
|
||||
//
|
||||
rpc TestCode (CodeReq) returns (CodeReply);
|
||||
//
|
||||
rpc testCode (CodeReq) returns (CodeReply);
|
||||
|
||||
rpc TestReq (ProbeReq) returns (ProbeReply);
|
||||
//
|
||||
rpc TestStream (ProbeStreamReq) returns (ProbeStreamReply);
|
||||
//
|
||||
rpc testReq (ProbeReq) returns (ProbeReply);
|
||||
|
||||
//
|
||||
//
|
||||
rpc testStream (ProbeStreamReq) returns (ProbeStreamReply);
|
||||
|
||||
//
|
||||
//
|
||||
rpc testSub (ProbeSubReq) returns (ProbeSubReply);
|
||||
rpc TestSub (ProbeSubReq) returns (ProbeSubReply);
|
||||
}
|
||||
|
||||
//-请求
|
||||
//
|
||||
message CodeReq {
|
||||
//
|
||||
int64 code = 1;
|
||||
}
|
||||
|
||||
//-回复
|
||||
message CodeReply {
|
||||
//
|
||||
message CodeReply {}
|
||||
|
||||
}
|
||||
|
||||
//-请求
|
||||
//
|
||||
message ProbeReq {
|
||||
//
|
||||
int64 mid = 1;
|
||||
|
||||
//
|
||||
string buvid = 2;
|
||||
}
|
||||
|
||||
//-回复
|
||||
//
|
||||
message ProbeReply {
|
||||
//
|
||||
string content = 1;
|
||||
|
||||
//
|
||||
int64 timestamp = 2;
|
||||
}
|
||||
|
||||
//-请求
|
||||
//
|
||||
message ProbeStreamReq {
|
||||
//
|
||||
int64 mid = 1;
|
||||
|
||||
//
|
||||
int64 sequence = 2;
|
||||
}
|
||||
|
||||
//-回复
|
||||
//
|
||||
message ProbeStreamReply {
|
||||
//
|
||||
int64 sequence = 1;
|
||||
|
||||
//
|
||||
int64 timestamp = 2;
|
||||
|
||||
//
|
||||
string content = 3;
|
||||
}
|
||||
|
||||
//-请求
|
||||
//
|
||||
message ProbeSubReq {
|
||||
//
|
||||
int64 buvid = 1;
|
||||
}
|
||||
|
||||
//-回复
|
||||
//
|
||||
message ProbeSubReply {
|
||||
//
|
||||
int64 messageId = 1;
|
||||
Reference in New Issue
Block a user