8f8ba948 | 04-Aug-2006 |
Yang Tse |
Fix compiler warning |
f55924b3 | 04-Aug-2006 |
Yang Tse |
Avoid redundant check. configure script takes care of not defining HAVE_WINDOWS_H, HAVE_WINSOCK_H, HAVE_WINSOCK2_H, neither HAVE_WS2TCPIP_H when __CYGWIN__ is defined. |
7240acde | 04-Aug-2006 |
Yang Tse |
Being unable to link or find out recv() or send() args types is a fatal error. |
b9b06b00 | 03-Aug-2006 |
Daniel Stenberg |
This is now a working example using libevent and curl_multi_socket() for really fast treatment of many simultaneous transfers |
51f258d1 | 03-Aug-2006 |
Daniel Stenberg |
adding CURLM_CALL_MULTI_SOCKET that's just the same as CURLM_CALL_MULTI_PERFORM |
4c75f1c7 | 03-Aug-2006 |
Yang Tse |
MinGW/MSYS needs lib ws2_32 for proper operation of configure script. |
ed7bff1f | 03-Aug-2006 |
Daniel Stenberg |
Ravi Pratap fixed ares_getsock() to actually return the proper bitmap and not always zero! |
01a79be2 | 03-Aug-2006 |
Daniel Stenberg |
removed running_handles argument from multi_runsingle() since it wasn't really used anymore since multi->num_alive was introduced |
d211fcd3 | 03-Aug-2006 |
Yang Tse |
Silence compiler warning 'unused parameter running_handles' in function multi_runsingle(). This is done here returning multi->num_alive in the running_handles parameter even when functions that call
Silence compiler warning 'unused parameter running_handles' in function multi_runsingle(). This is done here returning multi->num_alive in the running_handles parameter even when functions that call multi_runsingle() at this moment overwrite the returned value with the one that is valid when those functions curl_multi_perform() and multi_socket() have removed expired timers from the splay. Most probably, parameter 'running_handles' in function multi_runsingle() should be just removed.
show more ...
|
15983417 | 02-Aug-2006 |
Daniel Stenberg |
keep count of the number of "alive" handles in a struct member, as otherwise *multi_socket*() can't return the proper number |
8a38c72c | 02-Aug-2006 |
Daniel Stenberg |
Mark Lentczner fixed how libcurl was not properly doing chunked encoding if the header "Transfer-Encoding: chunked" was set by the application. http://curl.haxx.se/bug/view.cgi?id=1531838 |
fbcdc192 | 02-Aug-2006 |
Daniel Stenberg |
a CURLOPT_PROGRESSFUNCTION clarification |
ee642859 | 01-Aug-2006 |
Daniel Stenberg |
Maciej Karpiuk fixed a crash that would occur if we passed Curl_strerror() an unknown error number on glibc systems. http://curl.haxx.se/bug/view.cgi?id=1532289 |
9f579f12 | 01-Aug-2006 |
Daniel Stenberg |
spell-fixed a comment |
825a5267 | 01-Aug-2006 |
Daniel Stenberg |
updated docs with the new parameter |
ae8a01ea | 31-Jul-2006 |
Yang Tse |
Avoid the risk of a false positive detection of MSG_NOSIGNAL when cross compiling a Windows target. |
9dde0b54 | 31-Jul-2006 |
Yang Tse |
Silence warning: empty body in an if-statement |
f1343b2f | 31-Jul-2006 |
Yang Tse |
Force compilation failure in case macros sread() or swrite() are not defined. |
962b7985 | 31-Jul-2006 |
Yang Tse |
Provide definitions needed for macros sread() and swrite() in config file. |
5a1c64d3 | 30-Jul-2006 |
Daniel Stenberg |
adapt to the new protos |
01b2cf82 | 30-Jul-2006 |
Daniel Stenberg |
curl_multi_socket() and curl_multi_socket_all() got modified prototypes: they both now provide the number of running handles back to the calling function. |
c033c4c7 | 29-Jul-2006 |
Yang Tse |
Winsock and Cygwin need address family specification before bind(), this should be harmless for others. |
aa791ee5 | 29-Jul-2006 |
Yang Tse |
Fix compiler warnings. |
305671e2 | 29-Jul-2006 |
Yang Tse |
include setup_once.h dependency and adjust to 80 char lines. |
d6547368 | 28-Jul-2006 |
Daniel Stenberg |
new D binding |