From 1d6c040dcb9a01648edc66d8c0006c8c9294a705 Mon Sep 17 00:00:00 2001
From: lichao <lichao@aiotlink.com>
Date: 星期四, 22 四月 2021 18:28:30 +0800
Subject: [PATCH] add mutex timeout limit; use atomic as refcount.
---
proto/source/bhome_msg_api.proto | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/proto/source/bhome_msg_api.proto b/proto/source/bhome_msg_api.proto
index a8e8545..fd1ae8f 100644
--- a/proto/source/bhome_msg_api.proto
+++ b/proto/source/bhome_msg_api.proto
@@ -1,15 +1,16 @@
syntax = "proto3";
option optimize_for = LITE_RUNTIME;
+option go_package="./bhome_msg";
// public messages
import "error_msg.proto";
-package bhome.msg;
+package bhome_msg;
message BHAddress {
bytes mq_id = 1; // mqid, uuid
- // bytes ip = 2; //
- // int32 port = 3;
+ bytes ip = 2; //
+ int32 port = 3;
}
message ProcInfo
--
Gitblit v1.8.0