CHG: changed the base message class to only use sender uuid as id

This commit is contained in:
Henry Winkel
2023-07-05 17:25:17 +02:00
parent 828d038d5f
commit 3a63dec02f
5 changed files with 266 additions and 63 deletions

View File

@@ -10,11 +10,12 @@ message Message {
uint32 topic = 1;
uint32 msgType = 2;
uint32 sourceType = 3;
uint32 sourceID = 4;
uint32 parentID = 5;
string senderUUID = 4;
optional uint32 sourceID = 5;
optional uint32 parentID = 6;
google.protobuf.Any payload = 6;
google.protobuf.Any payload = 7;
}