Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |