vout: opengl: compute the camera position only with FOVx
[vlc.git] / compat / sendmsg.c
blobc0bb31bc6a8763ffe159817ad3543585e1b3594d
1 /*****************************************************************************
2 * sendmsg.c: POSIX sendmsg() 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 sendmsg(int fd, const 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 = (void *)msg->msg_iov[i].iov_base;
54 DWORD sent;
56 int ret = WSASendTo(fd, buf, msg->msg_iovlen, &sent, flags,
57 msg->msg_name, msg->msg_namelen, NULL, NULL);
58 free(buf);
60 if (ret == 0)
61 return sent;
63 switch (WSAGetLastError())
65 case WSAEWOULDBLOCK:
66 errno = EAGAIN;
67 break;
69 return -1;
71 #endif