shutdown socket when closing
This commit is contained in:
parent
6b9be46dd2
commit
8797367403
@ -324,6 +324,7 @@ void g_tcp_close(int sck)
|
||||
{
|
||||
return;
|
||||
}
|
||||
shutdown(sck, 2);
|
||||
#if defined(_WIN32)
|
||||
closesocket(sck);
|
||||
#else
|
||||
@ -557,6 +558,8 @@ int g_get_threadid(void)
|
||||
return 0;
|
||||
#elif defined(USE_PTHREAD)
|
||||
return pthread_self();
|
||||
#else
|
||||
return 0;
|
||||
#endif
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user