working commit

This commit is contained in:
2026-04-24 16:50:15 +02:00
parent 37d9ee63cc
commit ace92da151
26 changed files with 3879 additions and 1893 deletions
+19
View File
@@ -0,0 +1,19 @@
#include <expected>
#include <string>
#include <cstring>
#include <iostream>
#include <format>
#include <rpcheader.hpp>
int main(int argc, char** argv) {
RPCHeader primary(1021);
auto rawHeader = primary.Encode();
RPCHeader second;
second.Decode(rawHeader);
std::cout << std::format("{}\n", second.PacketSize());
assert
}