TCP bugfixes

This commit is contained in:
2025-10-23 23:07:08 -04:00
parent cf316efee5
commit 9068ff72c4
7 changed files with 60 additions and 16 deletions

View File

@@ -8,6 +8,8 @@
class IRPCServer {
public:
virtual ~IRPCServer() = default;
virtual void startup() = 0;
virtual void shutdown() = 0;
virtual int send_msg(char* buffer, uint32_t length) const = 0;
};