wut/libraries/wutsocket/shutdown.c
2021-03-07 13:09:12 +01:00

16 lines
257 B
C

#include "wut_socket.h"
int
shutdown(int sockfd,
int how)
{
int rc;
sockfd = __wut_get_nsysnet_fd(sockfd);
if (sockfd == -1) {
return -1;
}
rc = RPLWRAP(shutdown)(sockfd, how);
return __wut_get_nsysnet_result(NULL, rc);
}