Skip to content
Snippets Groups Projects
Commit 675ff909 authored by Steve Lhomme's avatar Steve Lhomme
Browse files

win32: add more winsock errors

parent 4ced8ba1
No related branches found
No related tags found
1 merge request!2496network: fix win32 errno usage with poll
......@@ -25,6 +25,7 @@
#include <stdlib.h>
#include <errno.h>
#include <winerror.h>
#include <winsock2.h>
#include <vlc_common.h>
......@@ -83,6 +84,7 @@ static const wsaerrmsg_t wsaerrmsg[] =
{ WSAEDQUOT, "Disk quota exceeded" },
{ WSAESTALE, "Stale file handle reference" },
{ WSAEREMOTE, "Item is remote", },
{ WSA_INVALID_PARAMETER, "Invalid parameter", },
{ WSASYSNOTREADY, "Network subsystem is unavailable (network stack not ready)" },
{ WSAVERNOTSUPPORTED, "Winsock.dll version out of range (network stack version not supported" },
{ WSANOTINITIALISED, "Network not initialized" },
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment