Separate MessageDecoder from Packetizer and optimize

This will, in the future, allow overriding of MessageDecoder per device as necessary.
This commit is contained in:
Paul Hollinsky
2018-09-13 19:39:19 -04:00
parent e2e5017331
commit 9f43e9e39e
9 changed files with 440 additions and 374 deletions
+1
View File
@@ -11,6 +11,7 @@ public:
virtual ~Message() {}
Network network;
std::vector<uint8_t> data;
uint64_t timestamp;
};
};