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
+3 -3
View File
@@ -6,15 +6,15 @@
#include <string>
class Handler {
public:
public:
void Handle(int sock);
};
class Service {
private:
private:
int port;
int sock;
public:
public:
explicit Service(int port);
std::expected<void, std::string> Bind(void);
std::expected<void, std::string> Listen(Handler *handler);