公告板
版本库
filestore
活动
搜索
登录
valib
/
bhshmq
bhshmq
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
server resend failed; rename msgs; refactor.
lichao
2021-04-06
bb9a7e348892eb5c4fccb063380aa6fcd9612b71
[valib/bhshmq.git]
/
proto
/
source
/
error_msg.proto
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
syntax = "proto3";
option optimize_for = LITE_RUNTIME;
package bhome.msg;
enum ErrorCode {
eSuccess = 0;
eError = 1;
eInvalidInput = 2;
}
message ErrorMsg {
ErrorCode errCode = 1;
bytes errString = 2;
}