Probably going to merge accept and network threads

This commit is contained in:
2025-08-20 16:24:09 -04:00
parent 24a1157f0d
commit 7e28e6503d
6 changed files with 166 additions and 72 deletions

View File

@@ -118,6 +118,10 @@ private:
void start_accept_threads();
void cleanup_resources();
// Helper for processing connection I/O (shared between accept and network
// threads)
bool process_connection_io(std::unique_ptr<Connection> &conn, int events);
/**
* Called internally to return ownership to the server.
*