#pragma once #include "tcp_connection.h" namespace EQ { namespace Net { class TCPServer { public: TCPServer(); ~TCPServer(); void Listen(int port, bool ipv6, std::function)> cb); void Listen(const std::string &addr, int port, bool ipv6, std::function)> cb); void Close(); void AddClient(uv_tcp_t *c); private: std::function)> m_on_new_connection; uv_tcp_t *m_socket; }; } }