.dll .so 복사 자동화 완료

This commit is contained in:
2025-04-28 11:25:53 +09:00
parent f76e1b9a5d
commit 41c75b9dca
15 changed files with 165 additions and 69 deletions

View File

@@ -15,8 +15,7 @@ public:
void destruct();
operator SOCKET() const;
void move(const SOCKET);
Socket& move();
void set(const SOCKET);
void bind(sockaddr *__addr);
void bind(sockaddr *__addr, socklen_t __len);
@@ -29,6 +28,9 @@ public:
void bind(sockaddr_in6 *__addr);
void bind(sockaddr_in6 *__addr, socklen_t __len);
int recvfrom(void *__restrict __buf, size_t __n, int __flags, struct Address& __addr);
int sendto(const void *__buf, size_t __n, int __flags, struct Address __addr);
Socket(const Socket&) = delete;
Socket(Socket&&);
Socket& operator=(const Socket&) = delete;