working commit

This commit is contained in:
Олег Бородин
2026-05-06 15:10:19 +02:00
parent eda9b8986b
commit 9540ac05d4
17 changed files with 849 additions and 228 deletions
+4 -1
View File
@@ -7,11 +7,14 @@
#include <string>
#include <mutex>
#include <interface.hpp>
class SocketHandler {
private:
int sock;
std::mutex sockMtx;
std::mutex intMtx;
std::binary_semaphore done{0};
Interface interface;
public:
void Handle(int newsock);
void RecvMessages(void);