SOCKET_SHUTDOWN_WRITE_SIDE #define no longer required

This commit is contained in:
Jeff Hill
2005-11-18 23:51:34 +00:00
parent d53b80a61a
commit 543a723851
+1 -2
View File
@@ -498,8 +498,7 @@ static void acceptNewClient ( void *pParam )
}
}
# define SOCKET_SHUTDOWN_WRITE_SIDE 1
status = shutdown(pclient->insock, SOCKET_SHUTDOWN_WRITE_SIDE);
status = shutdown(pclient->insock, SHUT_WR);
if(status<0){
char sockErrBuf[64];
epicsSocketConvertErrnoToString ( sockErrBuf, sizeof ( sockErrBuf ) );