// util.h // Author: Allen Porter #include #include #include namespace ynet { struct sockaddr_in SockAddr(const char* ip, int16_t port); void SetNonBlocking(int sock); void SetBlocking(int sock); } // namespace ynet