Fixed hanging bug

This commit is contained in:
Ryzerth
2021-07-19 15:57:37 +02:00
parent 1adcdea6d1
commit 027297933b
2 changed files with 4 additions and 0 deletions

View File

@ -36,6 +36,7 @@ namespace net {
#ifdef _WIN32
closesocket(_sock);
#else
::shutdown(_sock, SHUT_RDWR);
::close(_sock);
#endif
}