Split winsock.c into many smaller files.
authorSimon Josefsson <simon@josefsson.org>
Tue, 21 Oct 2008 10:17:19 +0000 (12:17 +0200)
committerSimon Josefsson <simon@josefsson.org>
Tue, 21 Oct 2008 10:17:19 +0000 (12:17 +0200)
commit11ee0e1340f95ccb9954e522f6e003b3125eb109
treec6af32a8490def92de47523a8af2a7c201f66cf3
parentd8374ab0f478c73f395110911d5e68ff0dfec837
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.
51 files changed:
ChangeLog
doc/posix-functions/accept.texi
doc/posix-functions/bind.texi
doc/posix-functions/close.texi
doc/posix-functions/connect.texi
doc/posix-functions/getpeername.texi
doc/posix-functions/getsockname.texi
doc/posix-functions/getsockopt.texi
doc/posix-functions/ioctl.texi
doc/posix-functions/listen.texi
doc/posix-functions/recv.texi
doc/posix-functions/recvfrom.texi
doc/posix-functions/send.texi
doc/posix-functions/sendto.texi
doc/posix-functions/setsockopt.texi
doc/posix-functions/shutdown.texi
doc/posix-functions/socket.texi
lib/accept.c [new file with mode: 0644]
lib/bind.c [new file with mode: 0644]
lib/close.c
lib/connect.c [new file with mode: 0644]
lib/getpeername.c [new file with mode: 0644]
lib/getsockname.c [new file with mode: 0644]
lib/getsockopt.c [new file with mode: 0644]
lib/ioctl.c [new file with mode: 0644]
lib/listen.c [new file with mode: 0644]
lib/recv.c [new file with mode: 0644]
lib/recvfrom.c [new file with mode: 0644]
lib/send.c [new file with mode: 0644]
lib/sendto.c [new file with mode: 0644]
lib/setsockopt.c [new file with mode: 0644]
lib/shutdown.c [new file with mode: 0644]
lib/socket.c [new file with mode: 0644]
lib/w32sock.h [new file with mode: 0644]
lib/winsock.c [deleted file]
modules/accept
modules/bind
modules/connect
modules/getpeername
modules/getsockname
modules/getsockopt
modules/ioctl
modules/listen
modules/recv
modules/recvfrom
modules/send
modules/sendto
modules/setsockopt
modules/shutdown
modules/socket
modules/sys_socket