Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-09-08 | signal() returns 'void (*)(int)'. | Gisle Vanem | |
2006-09-08 | Mention that CURLOPT_MAX_RECV/SEND* were added in 7.15.5 | Daniel Stenberg | |
2006-09-08 | Update comment reflecting structure change. | Gisle Vanem | |
2006-09-08 | removed the comment that isn't valid for this file, just a copy'n paste error | Daniel Stenberg | |
2006-09-08 | Compilation fix; 'reqdata' is not a pointer. 'path' is part of SessionHandle. | Gisle Vanem | |
2006-09-08 | test 530 is the first ever HTTP pipelining test for libcurl | Daniel Stenberg | |
2006-09-08 | Compilation fix | Yang Tse | |
2006-09-07 | Major overhaul introducing http pipelining support and shared connection | Daniel Stenberg | |
cache within the multi handle. | |||
2006-09-07 | Fix compiler warning | Yang Tse | |
2006-09-06 | Invoke memanalyze from the source path and hush up about killing the FTP | Daniel Stenberg | |
server as part of test cases | |||
2006-09-05 | added some fresh new blurb | Daniel Stenberg | |
2006-09-04 | spell fix and added Jari | Daniel Stenberg | |
2006-09-04 | Jari Sundell's minor cleanup, added comments and some extra error-checkings | Daniel Stenberg | |
for easier future error-tracking. | |||
2006-09-04 | I fell over a new libtool that starts with a newline so we need to fetch | Daniel Stenberg | |
the two first lines to get the version string. The good news is that older libtools have an empty line after the first so I think this works fine all over... | |||
2006-09-04 | oops, we're on the .6 track now | Daniel Stenberg | |
2006-09-04 | proper credit | Daniel Stenberg | |
2006-09-03 | - "Dortik" (http://curl.haxx.se/bug/view.cgi?id=1551412) provided a patch that | Daniel Stenberg | |
while not fixing things very nicely, it does make the SOCKS5 proxy connection slightly better as it now acknowledges the timeout for connection and it no longer segfaults in the case when SOCKS requires authentication and you did not specify username:password. | |||
2006-09-03 | Mohun Biswas' improvements and clarifications about the options and how to use | Daniel Stenberg | |
them. | |||
2006-09-03 | Simplified #ifdef on WIN32; the statement | Gisle Vanem | |
" !defined(__GNUC__) || defined(__MINGW32__)" implies CygWin. | |||
2006-09-03 | Watcom lacks <sys/time.h>. | Gisle Vanem | |
2006-08-31 | added missing test | Daniel Stenberg | |
2006-08-31 | Dmitriy Sergeyev found and fixed a multi interface flaw when using asynch | Daniel Stenberg | |
name resolves. It could get stuck in the wrong state. | |||
2006-08-30 | Added HAVE_SYS_TIME_H for djgpp and HighC. | Gisle Vanem | |
2006-08-30 | Removed "#ifndef__WATCOMC__". Use "#ifdef HAVE_SYS_TIME_H" instead. | Gisle Vanem | |
2006-08-30 | Added support for more MS-DOS compilers. | Gisle Vanem | |
2006-08-29 | Avoid Metaware's High-C warning "'=' encountered where '==' may have been ↵ | Gisle Vanem | |
intended." | |||
2006-08-29 | Watcom lacks <sys/time.h>. | Gisle Vanem | |
2006-08-29 | Added support for Watcom/DOS. | Gisle Vanem | |
2006-08-29 | Updated dependency section. | Gisle Vanem | |
2006-08-29 | Don't include zlib headers in dependency output. | Gisle Vanem | |
2006-08-29 | Renamed config.dj -> config.dos. | Gisle Vanem | |
2006-08-29 | Use config.dos instead. Updated generated dependencies. | Gisle Vanem | |
2006-08-29 | Removed. New file is config.dos. | Gisle Vanem | |
2006-08-29 | Renamed config.dj -> config.dos. Added #ifdef-section for djgpp. | Gisle Vanem | |
2006-08-29 | BUFSIZE defined in Metaware's <stdio.h>. Undefine to avoid warning. | Gisle Vanem | |
2006-08-29 | Support other MS-DOS compilers (MSDOS is a djgpp built-in define). | Gisle Vanem | |
2006-08-29 | Metaware's High-C has an ISO cpp. | Gisle Vanem | |
2006-08-29 | Brad Spencer did | Daniel Stenberg | |
o made ares_version.h use extern "C" for c++ compilers o fixed compiler warnings in ares_getnameinfo.c o fixed a buffer position init for TCP reads | |||
2006-08-29 | David McCreedy added CURLOPT_SOCKOPTFUNCTION and CURLOPT_SOCKOPTDATA to | Daniel Stenberg | |
allow applications to set their own socket options. | |||
2006-08-25 | Armel Asselin reported that the 'running_handles' counter wasn't updated | Daniel Stenberg | |
properly if you removed a "live" handle from a multi handle with curl_multi_remove_handle(). | |||
2006-08-23 | clarify the string syntax support in the CURLOPT_PROXY section | Daniel Stenberg | |
2006-08-23 | Use /usr/bin/env to invoke perl like the other test scripts. | Dan Fandrich | |
2006-08-22 | David McCreedy fixed a remaining mistake from the August 19 TYPE change. | Daniel Stenberg | |
2006-08-22 | Peter Sylvester pointed out a flaw in the AllowServerConnect() in the FTP | Daniel Stenberg | |
code when doing pure ipv6 EPRT connections. | |||
2006-08-22 | as Jeff Pohlmeyer pointed out, first get the multi handle _then_ use it | Daniel Stenberg | |
2006-08-21 | Workaround for Cray UNICOS 9.0 to fix ftp. | Dan Fandrich | |
2006-08-21 | clarify for what protocols the changes are | Daniel Stenberg | |
2006-08-19 | Based on a patch by Armel Asselin, the FTP code no longer re-issues the TYPE | Daniel Stenberg | |
command on subsequent requests on a re-used connection unless it has to. | |||
2006-08-18 | Armel Asselin fixed a crash in the FTP code when using SINGLECWD mode and | Daniel Stenberg | |
files in the root directory. | |||
2006-08-18 | Andrew Biggs pointed out a "Expect: 100-continue" flaw where libcurl didn't | Daniel Stenberg | |
send the whole request at once, even though the Expect: header was disabled by the application. An effect of this change is also that small (< 1024 bytes) POSTs are now always sent without Expect: header since we deem it more costly to bother about that than the risk that we send the data in vain. |