Cleanup for release

This commit is contained in:
2026-03-28 23:10:58 -04:00
parent 40093c8534
commit 0056e7a9de
14 changed files with 293 additions and 0 deletions

19
Messaging/MPIMessage.fbs Normal file
View File

@@ -0,0 +1,19 @@
namespace Messaging;
enum MessageType : byte {
BROADCAST = 0,
PTP = 1,
}
table MPIMessage {
type: MessageType;
sender: uint8;
destination: uint8;
sequence_number: uint16;
is_durable: bool;
length: uint16;
tag: uint8;
payload: [ubyte];
}
root_type MPIMessage;