working commit

This commit is contained in:
2026-04-22 15:02:00 +02:00
parent 468dc70d7c
commit 321232ae1d
14 changed files with 310 additions and 236 deletions
+2 -2
View File
@@ -3,13 +3,13 @@
#define UPDCLIENT_HPP
class UDPClient {
private:
private:
int sockfd;
std::string address;
int port;
int rmax;
int family;
public:
public:
UDPClient(void);
std::expected<void, std::string> Bind(std::string address, int port);
std::expected<void, std::string> Send(std::string buffer);