add ReadableConnection interface

This commit is contained in:
MihailRis
2025-10-06 01:49:13 +03:00
parent 80cd187c6f
commit 44bf4a2f9e
3 changed files with 9 additions and 4 deletions
+6
View File
@@ -75,6 +75,12 @@ namespace network {
bool isprivate = false;
};
class ReadableConnection : public Connection {
public:
virtual int recv(char* buffer, size_t length) = 0;
virtual int available() = 0;
};
class Server {
public:
virtual ~Server() = default;