#pragma once #include #include class THangingServer { private: std::pair> BindResult; public: // listen on given port, and nothing else THangingServer(int port = 0); // actual port int GetPort() const; };