working commit

This commit is contained in:
Олег Бородин
2026-05-05 11:37:10 +02:00
parent bd4df1e3da
commit eda9b8986b
62 changed files with 7546 additions and 476 deletions
+33
View File
@@ -0,0 +1,33 @@
extern "C" {
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
}
#include <expected>
#include <string>
#include <vector>
#include <span>
#include <iostream>
#include <cstring>
#include <expected>
#include <string>
#include <iostream>
#include <sstream>
#include <abrpchandler.hpp>
AbstractRPCHandler::AbstractRPCHandler() {}
std::expected<void, std::string> AbstractRPCHandler::Handle(std::string& req, std::string& res) {
return {};
}
AbstractRPCHandler::~AbstractRPCHandler() {}