working commit

This commit is contained in:
Олег Бородин
2026-04-29 18:49:19 +02:00
parent 47542499fc
commit bd4df1e3da
19 changed files with 250 additions and 283 deletions
+3 -3
View File
@@ -11,14 +11,14 @@
#include <memory>
#include <netclient.hpp>
#include <nethandler.hpp>
#include <abrpchandler.hpp>
class TestConnector : public NetClient {
private:
NetHandler* handler;
AbstractRPCHandler* handler;
std::stringstream backss;
public:
TestConnector(NetHandler& hand);
TestConnector(AbstractRPCHandler& hand);
std::expected<int, std::string> Write(std::string payload) override;
std::expected<int, std::string> Read(std::string& buffer, int size) override;
~TestConnector(void);