패킷 정의, 로그가 더 많이 설명하도록 변경

This commit is contained in:
2025-04-30 20:13:20 +09:00
parent b662823726
commit af414e58a1
9 changed files with 222 additions and 12 deletions

View File

@@ -15,9 +15,11 @@ public:
int send();
int recv();
Session(const Session&) = delete;
Session& operator=(Session&) = delete;
private:
std::vector<Chattr::TCPSocket> tcpSock_;
std::vector<Chattr::Socket> udpSock_;
Chattr::TCPSocket sock_;
struct Snowflake sessId_;
};
}