FTP: use psz_url instead of psz_location
[vlc.git] / compat / recvmsg.c
blob5cb56f7eb99dc130a8c5fef7d5c16ea6a77ee035
1 /*****************************************************************************
2 * recvmsg.c: POSIX recvmsg() replacement
3 *****************************************************************************
4 * Copyright © 2016 Rémi Denis-Courmont
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU Lesser General Public License as published by
8 * the Free Software Foundation; either version 2.1 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with this program; if not, write to the Free Software Foundation,
18 * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
19 *****************************************************************************/
21 #ifdef HAVE_CONFIG_H
22 # include <config.h>
23 #endif
25 #ifdef _WIN32
26 # include <errno.h>
27 # include <stdlib.h>
28 # include <mswsock.h>
30 ssize_t recvmsg(int fd, struct msghdr *msg, int flags)
32 if (msg->msg_controllen != 0)
34 errno = ENOSYS;
35 return -1;
38 if (msg->msg_iovlen > IOV_MAX)
40 errno = EINVAL;
41 return -1;
44 WSABUF *buf = malloc(msg->msg_iovlen * sizeof (*buf));
45 if (buf == NULL)
46 return -1;
48 for (unsigned i = 0; i < msg->msg_iovlen; i++)
50 buf[i].len = msg->msg_iov[i].iov_len;
51 buf[i].buf = msg->msg_iov[i].iov_base;
54 DWORD dwFlags = flags;
55 INT fromlen = msg->msg_namelen;
56 DWORD rcvd;
57 int ret = WSARecvFrom(fd, buf, msg->msg_iovlen, &rcvd, &dwFlags,
58 msg->msg_name, &fromlen, NULL, NULL);
59 free(buf);
61 if (ret == 0)
63 msg->msg_namelen = fromlen;
64 msg->msg_flags = dwFlags;
65 return rcvd;
68 switch (WSAGetLastError())
70 case WSAEWOULDBLOCK:
71 errno = EAGAIN;
72 break;
74 return -1;
76 #endif