Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-11-05 | removed space after if and while before the parenthesis for better source code | Daniel Stenberg | |
consistency | |||
2007-08-27 | Fixed some minor type mismatches and missing consts mainly found by splint. | Dan Fandrich | |
2007-06-05 | if we read zero bytes from the proxy, the connection is broken and we need | Daniel Stenberg | |
to bail out | |||
2007-04-16 | - Robert Iakobashvil added curl_multi_socket_action() to libcurl, which is a | Daniel Stenberg | |
function that deprecates the curl_multi_socket() function. Using the new function the application tell libcurl what action that was found in the socket that it passes in. This gives a significant performance boost as it allows libcurl to avoid a call to poll()/select() for every call to curl_multi_socket*(). | |||
2007-03-30 | dead code removed, found by the coverity.com scan | Daniel Stenberg | |
2007-03-26 | Internal function Curl_select() renamed to Curl_socket_ready() | Yang Tse | |
2007-02-21 | Include some possible dependencies of arpa/inet.h | Dan Fandrich | |
2007-02-20 | Include network byte order conversion macros on Minix. | Dan Fandrich | |
2007-02-20 | compiler warning fix | Yang Tse | |
2007-02-19 | - Robson Braga Araujo made passive FTP transfers work with SOCKS (both 4 and | Daniel Stenberg | |
5). | |||
2007-02-06 | fix for millisecond resolution timeouts | Yang Tse | |
2007-02-05 | - Michael Wallner provided a patch that adds support for CURLOPT_TIMEOUT_MS | Daniel Stenberg | |
and CURLOPT_CONNECTTIMEOUT_MS that, as their names should hint, do the timeouts with millisecond resolution instead. The only restriction to that is the alarm() (sometimes) used to abort name resolves as that uses full seconds. I fixed the FTP response timeout part of the patch. Internally we now count and keep the timeouts in milliseconds but it also means we multiply set timeouts with 1000. The effect of this is that no timeout can be set to more than 2^31 milliseconds (on 32 bit systems), which equals 24.86 days. We probably couldn't before either since the code did *1000 on the timeout values on several places already. | |||
2006-10-27 | Compiler warning fix | Yang Tse | |
2006-09-24 | Compiler warning fix | Yang Tse | |
2006-09-23 | standard curl source code headers | Daniel Stenberg | |
2006-09-23 | Dmitriy Sergeyev provided a patch that made the SOCKS[45] code work better as | Daniel Stenberg | |
it now will read the full data sent from servers. The SOCKS-related code was also moved to the new lib/socks.c source file. |