Mercurial > hg > octave-kai > gnulib-hg
comparison modules/setsockopt @ 10690:01f3623813da
Split winsock.c into many smaller files.
* lib/close.c: Add _gl_close_fd_maybe_socket from winsock.c.
* lib/accept.c: New file, based on winsock.c.
* lib/bind.c: New file, based on winsock.c.
* lib/connect.c: New file, based on winsock.c.
* lib/getpeername.c: New file, based on winsock.c.
* lib/getsockname.c: New file, based on winsock.c.
* lib/getsockopt.c: New file, based on winsock.c.
* lib/ioctl.c: New file, based on winsock.c.
* lib/listen.c: New file, based on winsock.c.
* lib/recv.c: New file, based on winsock.c.
* lib/recvfrom.c: New file, based on winsock.c.
* lib/send.c: New file, based on winsock.c.
* lib/sendto.c: New file, based on winsock.c.
* lib/setsockopt.c: New file, based on winsock.c.
* lib/shutdown.c: New file, based on winsock.c.
* lib/socket.c: New file, based on winsock.c.
* lib/w32sock.h: New file, based on winsock.c.
* lib/winsock.c: Remove file.
* modules/accept: Likewise.
* modules/bind: Likewise.
* modules/connect: Likewise.
* modules/getpeername: Likewise.
* modules/getsockname: Likewise.
* modules/getsockopt: Likewise.
* modules/ioctl: Likewise.
* modules/listen: Likewise.
* modules/recv: Likewise.
* modules/recvfrom: Likewise.
* modules/send: Likewise.
* modules/sendto: Likewise.
* modules/setsockopt: Likewise.
* modules/shutdown: Likewise.
* modules/socket: Use socket.c instead of winsock.c.
* modules/sys_socket: Remove (unneeded?) dependency on winsock.c.
* doc/posix-functions/accept.texi: Doc fix.
* doc/posix-functions/bind.texi: Doc fix.
* doc/posix-functions/close.texi: Doc fix.
* doc/posix-functions/connect.texi: Doc fix.
* doc/posix-functions/getpeername.texi: Doc fix.
* doc/posix-functions/getsockname.texi: Doc fix.
* doc/posix-functions/getsockopt.texi: Doc fix.
* doc/posix-functions/ioctl.texi: Doc fix.
* doc/posix-functions/listen.texi: Doc fix.
* doc/posix-functions/recv.texi: Doc fix.
* doc/posix-functions/recvfrom.texi: Doc fix.
* doc/posix-functions/send.texi: Doc fix.
* doc/posix-functions/sendto.texi: Doc fix.
* doc/posix-functions/setsockopt.texi: Doc fix.
* doc/posix-functions/shutdown.texi: Doc fix.
* doc/posix-functions/socket.texi: Doc fix.
author | Simon Josefsson <simon@josefsson.org> |
---|---|
date | Tue, 21 Oct 2008 12:17:19 +0200 |
parents | 43282f926709 |
children | e8ad1520586c |
comparison
equal
deleted
inserted
replaced
10689:5fbf24129e48 | 10690:01f3623813da |
---|---|
1 Description: | 1 Description: |
2 setsockopt() function: specify optional settings on a socket. | 2 setsockopt() function: specify optional settings on a socket. |
3 | 3 |
4 Files: | 4 Files: |
5 lib/winsock.c | 5 lib/setsockopt.c |
6 lib/w32sock.h | |
6 | 7 |
7 Depends-on: | 8 Depends-on: |
8 sys_socket | 9 sys_socket |
9 errno | 10 errno |
10 | 11 |
11 configure.ac: | 12 configure.ac: |
12 AC_REQUIRE([gl_HEADER_SYS_SOCKET]) | 13 AC_REQUIRE([gl_HEADER_SYS_SOCKET]) |
13 if test "$ac_cv_header_winsock2_h" = yes; then | 14 if test "$ac_cv_header_winsock2_h" = yes; then |
14 AC_LIBOBJ([winsock]) | 15 AC_LIBOBJ([setsockopt]) |
15 fi | 16 fi |
16 gl_SYS_SOCKET_MODULE_INDICATOR([setsockopt]) | 17 gl_SYS_SOCKET_MODULE_INDICATOR([setsockopt]) |
17 | 18 |
18 Makefile.am: | 19 Makefile.am: |
19 | 20 |