#ifndef UPDCLIENT_HPP #define UPDCLIENT_HPP class UDPClient { private: int sockfd; std::string address; int port; int rmax; int family; public: UDPClient(void); std::expected Bind(std::string address, int port); std::expected Send(std::string buffer); std::expected Recv(); void Close(void); ~UDPClient(void); }; #endif