Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-09-24 | Cory Nelson made libcurl use the WSAPoll() function if built for Windows | Daniel Stenberg | |
Vista (_WIN32_WINNT >= 0x0600) | |||
2006-05-05 | additional renames of Curl_ourerrno => Curl_sockerrno | Daniel Stenberg | |
2006-04-26 | Fixed signed/unsigned convertion errors in Salford-C. | Gisle Vanem | |
#ifdef around WSAEDISCON in strerror.c. | |||
2006-04-07 | First commit of David McCreedy's EBCDIC and TPF changes. | Daniel Stenberg | |
2005-11-13 | Thanks to this nice summary of poll() implementations: | Daniel Stenberg | |
http://www.greenend.org.uk/rjk/2001/06/poll.html and further tests by Eugene Kotlyarov, we now know that cygwin's poll returns only POLLHUP on remote connection closure so we check for that case (too) and re-enable poll for cygwin builds. | |||
2005-04-26 | Cory Nelson's work on nuking compiler warnings when building on x64 with | Daniel Stenberg | |
VS2005. | |||
2005-03-31 | Updated the copyright year since changes have been this year. | Daniel Stenberg | |
2005-03-22 | Fixed typo. | Dan Fandrich | |
2005-03-21 | Modified the VALID_SOCK() macro to become VERIFY_SOCK() instead. It is slighly | Daniel Stenberg | |
more involved, but should hopefully not generate any compiler warnings on win32 systems (that can't check the socket based on the numeric). | |||
2005-01-15 | errrno can by freak accident become EINTR on DOS or | Gisle Vanem | |
Windows (unrelated to select). select() can never set errno to EINTR on Windows. | |||
2005-01-13 | Inspired by Martijn Koster's patch and example source at | Daniel Stenberg | |
http://www.greenhills.co.uk/mak/gentoo/curl-eintr-bug.c, I now made the select() and poll() calls properly loop if they return -1 and errno is EINTR. glibc docs for this is found here: http://www.gnu.org/software/libc/manual/html_node/Interrupted-Primitives.html This last link says BSD doesn't have this "effect". Will there be a problem if we do this unconditionally? S: ---------------------------------------------------------------------- | |||
2004-12-22 | Marcin Konicki provided two configure fixes and a source fix to make curl | Daniel Stenberg | |
build out-of-the-box on BeOS. | |||
2004-12-21 | include sys/types.h before sys/select.h | Daniel Stenberg | |
2004-11-20 | Dan Fandrich fix to compile with libc5 | Daniel Stenberg | |
2004-11-19 | Suppress signed vs. unsigned warnings on Win32 | Gisle Vanem | |
2004-11-19 | Curl_select() now uses curl_socket_t on socket arguments | Daniel Stenberg | |
2004-11-19 | Winsock sockets are not in range 0..FD_SETSIZE. | Gisle Vanem | |
Shouldn't Curl_select() use curl_socket_t ? | |||
2004-11-19 | David Phillips' FD_SETSIZE fix | Daniel Stenberg | |