feat: max clients connected limit in TcpServer

This commit is contained in:
MihailRis
2025-10-05 22:52:55 +03:00
parent 2f15a1a8d4
commit 2895cff5f2
4 changed files with 37 additions and 8 deletions
+2
View File
@@ -78,6 +78,8 @@ namespace network {
class Server {
public:
virtual ~Server() = default;
virtual void update() = 0;
virtual void close() = 0;
virtual bool isOpen() = 0;
[[nodiscard]] virtual TransportType getTransportType() const noexcept = 0;