UDPSocket 만들기

This commit is contained in:
2025-04-28 04:15:46 +09:00
parent 8aa0a4c4e6
commit f76e1b9a5d

View File

@@ -3,10 +3,17 @@
namespace Chattr { namespace Chattr {
class Sesson { class Sesson {
public: public:
Sesson();
~Session();
bool init();
void destruct();
int send(); int send();
int recv(); int recv();
private: private:
struct Chattr::TCPSocket sock; struct std::vector<Chattr::TCPSocket> sock;
struct std::vector<Chattr::Socket> sock;
}; };
} }