git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44862
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
2.8.3
-----
-wxMac
+All:
+
+- Shut down the sockets gracefully (Sergio Aguayo)
+
+wxMac:
- Corrected top border size for wxStaticBox with empty label (nusi)
/* If socket has been created, shutdown it */
if (m_fd != INVALID_SOCKET)
{
- shutdown(m_fd, 2);
+ shutdown(m_fd, 1 /* SD_SEND */);
Close();
}
/* If socket has been created, shutdown it */
if (m_fd != INVALID_SOCKET)
{
- shutdown(m_fd, 2);
+ shutdown(m_fd, 1);
Close();
}