Update TcpServer.hpp

This commit is contained in:
The Doctor
2019-10-17 12:08:45 +01:00
committed by GitHub
parent 309aa2c817
commit ece70d156c

View File

@ -24,7 +24,7 @@ namespace std::net
uint32_t m_maxConnections; uint32_t m_maxConnections;
uint16_t m_port; uint16_t m_port;
atomic_bool m_run; bool m_run;
shared_ptr<TcpConnectionHandler> m_connectionHandler; shared_ptr<TcpConnectionHandler> m_connectionHandler;
}; };