1 /* w32sock.h --- internal auxiliary functions for Windows socket functions
3 Copyright (C) 2008-2020 Free Software Foundation, Inc.
5 This program is free software: you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 3 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program. If not, see <https://www.gnu.org/licenses/>. */
18 /* Written by Paolo Bonzini */
22 /* Get O_RDWR and O_BINARY. */
25 /* Get _open_osfhandle(). */
28 /* Get _get_osfhandle(). */
29 #if GNULIB_MSVC_NOTHROW
30 # include "msvc-nothrow.h"
35 #define FD_TO_SOCKET(fd) ((SOCKET) _get_osfhandle ((fd)))
36 #define SOCKET_TO_FD(fh) (_open_osfhandle ((intptr_t) (fh), O_RDWR | O_BINARY))
39 set_winsock_errno (void)
41 int err
= WSAGetLastError ();
43 /* Map some WSAE* errors to the runtime library's error codes. */
46 case WSA_INVALID_HANDLE
:
49 case WSA_NOT_ENOUGH_MEMORY
:
52 case WSA_INVALID_PARAMETER
:
85 case WSAEPROTONOSUPPORT
:
86 errno
= EPROTONOSUPPORT
;
97 case WSAEADDRNOTAVAIL
:
98 errno
= EADDRNOTAVAIL
;
109 case WSAECONNABORTED
:
110 errno
= ECONNABORTED
;
127 case WSAECONNREFUSED
:
128 errno
= ECONNREFUSED
;
133 case WSAEHOSTUNREACH
:
134 errno
= EHOSTUNREACH
;
137 errno
= (err
> 10000 && err
< 10025) ? err
- 10000 : err
;