From 981ca0fa022524fd04af988bc798f2d697d31548 Mon Sep 17 00:00:00 2001
From: lichao <lichao@aiotlink.com>
Date: 星期三, 19 五月 2021 14:33:10 +0800
Subject: [PATCH] hide .so symbols, avoid 2+ protobuf link conflict.

---
 proto/source/bhome_msg_api.proto |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/proto/source/bhome_msg_api.proto b/proto/source/bhome_msg_api.proto
index 838c228..8b422c7 100644
--- a/proto/source/bhome_msg_api.proto
+++ b/proto/source/bhome_msg_api.proto
@@ -8,9 +8,10 @@
 package bhome_msg;
 
 message BHAddress {
-	bytes mq_id = 1; // mqid, uuid
-	bytes ip = 2;   //
-	int32 port = 3;
+	uint64 mq_id = 1;
+	int64 abs_addr = 2;
+	bytes ip = 3;   
+	int32 port = 4;
 }
 
 message ProcInfo
@@ -48,7 +49,6 @@
 message MsgRegister
 {
 	ProcInfo proc = 1;
-	repeated BHAddress addrs = 2;
 }
 
 message MsgUnregister

--
Gitblit v1.8.0