Mercurial > hg > octave-lojdl > gnulib-hg
annotate lib/setsockopt.c @ 17426:90f3d53e01f5
sig2str: port to C++
* lib/sig2str.h (sig2str, str2sig): Declare as extern "C".
Reported by Daniel J Sebald in
<http://lists.gnu.org/archive/html/bug-gnulib/2013-06/msg00000.html>.
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Sun, 02 Jun 2013 11:52:41 -0700 |
parents | e542fd46ad6f |
children |
rev | line source |
---|---|
10690
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
1 /* setsockopt.c --- wrappers for Windows setsockopt function |
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
2 |
17249
e542fd46ad6f
maint: update all copyright year number ranges
Eric Blake <eblake@redhat.com>
parents:
16201
diff
changeset
|
3 Copyright (C) 2008-2013 Free Software Foundation, Inc. |
10690
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
4 |
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
5 This program is free software: you can redistribute it and/or modify |
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
6 it under the terms of the GNU General Public License as published by |
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
7 the Free Software Foundation; either version 3 of the License, or |
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
8 (at your option) any later version. |
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
9 |
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
10 This program is distributed in the hope that it will be useful, |
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
11 but WITHOUT ANY WARRANTY; without even the implied warranty of |
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
13 GNU General Public License for more details. |
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
14 |
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
15 You should have received a copy of the GNU General Public License |
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
16 along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
17 |
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
18 /* Written by Paolo Bonzini */ |
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
19 |
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
20 #include <config.h> |
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
21 |
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
22 #define WIN32_LEAN_AND_MEAN |
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
23 /* Get winsock2.h. */ |
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
24 #include <sys/socket.h> |
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
25 |
11244
e8ad1520586c
setsockopt: Add support for timeouts on W32
Martin Lambers <marlam@marlam.de>
parents:
10690
diff
changeset
|
26 /* Get struct timeval. */ |
e8ad1520586c
setsockopt: Add support for timeouts on W32
Martin Lambers <marlam@marlam.de>
parents:
10690
diff
changeset
|
27 #include <sys/time.h> |
e8ad1520586c
setsockopt: Add support for timeouts on W32
Martin Lambers <marlam@marlam.de>
parents:
10690
diff
changeset
|
28 |
10690
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
29 /* Get set_winsock_errno, FD_TO_SOCKET etc. */ |
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
30 #include "w32sock.h" |
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
31 |
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
32 #undef setsockopt |
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
33 |
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
34 int |
11250
c02a0fe7bcc4
Use socklen_t in the native Windows replacements prototypes.
Bruno Haible <bruno@clisp.org>
parents:
11244
diff
changeset
|
35 rpl_setsockopt (int fd, int level, int optname, const void *optval, socklen_t optlen) |
10690
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
36 { |
15727
144db791c6fa
Ensure EBADF returns for socket functions on mingw.
Bruno Haible <bruno@clisp.org>
parents:
14079
diff
changeset
|
37 SOCKET sock = FD_TO_SOCKET (fd); |
11244
e8ad1520586c
setsockopt: Add support for timeouts on W32
Martin Lambers <marlam@marlam.de>
parents:
10690
diff
changeset
|
38 int r; |
e8ad1520586c
setsockopt: Add support for timeouts on W32
Martin Lambers <marlam@marlam.de>
parents:
10690
diff
changeset
|
39 |
15727
144db791c6fa
Ensure EBADF returns for socket functions on mingw.
Bruno Haible <bruno@clisp.org>
parents:
14079
diff
changeset
|
40 if (sock == INVALID_SOCKET) |
11244
e8ad1520586c
setsockopt: Add support for timeouts on W32
Martin Lambers <marlam@marlam.de>
parents:
10690
diff
changeset
|
41 { |
15727
144db791c6fa
Ensure EBADF returns for socket functions on mingw.
Bruno Haible <bruno@clisp.org>
parents:
14079
diff
changeset
|
42 errno = EBADF; |
144db791c6fa
Ensure EBADF returns for socket functions on mingw.
Bruno Haible <bruno@clisp.org>
parents:
14079
diff
changeset
|
43 return -1; |
11244
e8ad1520586c
setsockopt: Add support for timeouts on W32
Martin Lambers <marlam@marlam.de>
parents:
10690
diff
changeset
|
44 } |
e8ad1520586c
setsockopt: Add support for timeouts on W32
Martin Lambers <marlam@marlam.de>
parents:
10690
diff
changeset
|
45 else |
e8ad1520586c
setsockopt: Add support for timeouts on W32
Martin Lambers <marlam@marlam.de>
parents:
10690
diff
changeset
|
46 { |
15727
144db791c6fa
Ensure EBADF returns for socket functions on mingw.
Bruno Haible <bruno@clisp.org>
parents:
14079
diff
changeset
|
47 if (level == SOL_SOCKET |
144db791c6fa
Ensure EBADF returns for socket functions on mingw.
Bruno Haible <bruno@clisp.org>
parents:
14079
diff
changeset
|
48 && (optname == SO_RCVTIMEO || optname == SO_SNDTIMEO)) |
144db791c6fa
Ensure EBADF returns for socket functions on mingw.
Bruno Haible <bruno@clisp.org>
parents:
14079
diff
changeset
|
49 { |
144db791c6fa
Ensure EBADF returns for socket functions on mingw.
Bruno Haible <bruno@clisp.org>
parents:
14079
diff
changeset
|
50 const struct timeval *tv = optval; |
144db791c6fa
Ensure EBADF returns for socket functions on mingw.
Bruno Haible <bruno@clisp.org>
parents:
14079
diff
changeset
|
51 int milliseconds = tv->tv_sec * 1000 + tv->tv_usec / 1000; |
144db791c6fa
Ensure EBADF returns for socket functions on mingw.
Bruno Haible <bruno@clisp.org>
parents:
14079
diff
changeset
|
52 optval = &milliseconds; |
144db791c6fa
Ensure EBADF returns for socket functions on mingw.
Bruno Haible <bruno@clisp.org>
parents:
14079
diff
changeset
|
53 r = setsockopt (sock, level, optname, optval, sizeof (int)); |
144db791c6fa
Ensure EBADF returns for socket functions on mingw.
Bruno Haible <bruno@clisp.org>
parents:
14079
diff
changeset
|
54 } |
144db791c6fa
Ensure EBADF returns for socket functions on mingw.
Bruno Haible <bruno@clisp.org>
parents:
14079
diff
changeset
|
55 else |
144db791c6fa
Ensure EBADF returns for socket functions on mingw.
Bruno Haible <bruno@clisp.org>
parents:
14079
diff
changeset
|
56 { |
144db791c6fa
Ensure EBADF returns for socket functions on mingw.
Bruno Haible <bruno@clisp.org>
parents:
14079
diff
changeset
|
57 r = setsockopt (sock, level, optname, optval, optlen); |
144db791c6fa
Ensure EBADF returns for socket functions on mingw.
Bruno Haible <bruno@clisp.org>
parents:
14079
diff
changeset
|
58 } |
11244
e8ad1520586c
setsockopt: Add support for timeouts on W32
Martin Lambers <marlam@marlam.de>
parents:
10690
diff
changeset
|
59 |
15727
144db791c6fa
Ensure EBADF returns for socket functions on mingw.
Bruno Haible <bruno@clisp.org>
parents:
14079
diff
changeset
|
60 if (r < 0) |
144db791c6fa
Ensure EBADF returns for socket functions on mingw.
Bruno Haible <bruno@clisp.org>
parents:
14079
diff
changeset
|
61 set_winsock_errno (); |
10690
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
62 |
15727
144db791c6fa
Ensure EBADF returns for socket functions on mingw.
Bruno Haible <bruno@clisp.org>
parents:
14079
diff
changeset
|
63 return r; |
144db791c6fa
Ensure EBADF returns for socket functions on mingw.
Bruno Haible <bruno@clisp.org>
parents:
14079
diff
changeset
|
64 } |
10690
01f3623813da
Split winsock.c into many smaller files.
Simon Josefsson <simon@josefsson.org>
parents:
diff
changeset
|
65 } |