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
+24
View File
@@ -0,0 +1,24 @@
#include <expected>
#include <string>
#include <vector>
#include <span>
#include <iostream>
#include <semaphore>
#include <interface.hpp>
class UxClient {
private:
int family;
int sock;
std::binary_semaphore done{0};
Interface interface;
public:
UxClient(void);
std::expected<void, std::string> Connect(std::string address, const int port);
void SendMessages(void);
void RecvMessages(void);
std::expected<void, std::string> Run(void);
~UxClient(void);
};