Return error when shutdown() fails (#2801)

Fix issue reported in #2787.
This commit is contained in:
Marcin Kolny
2023-11-24 13:03:59 +00:00
committed by GitHub
parent 1ba4acd1c7
commit 5f7079f0f5
10 changed files with 88 additions and 66 deletions

View File

@ -573,9 +573,9 @@ os_socket_close(bh_socket_t socket);
*
* @param socket the socket to be shutdown
*
* @return always return 0
* @return returns corresponding error code
*/
int
__wasi_errno_t
os_socket_shutdown(bh_socket_t socket);
/**