Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-12-16 | Added the use of Watt-32 tcp/ip stack for Win32 targets. | Gisle Vanem | |
2008-12-15 | - libssh2_sftp_last_error() was wrongly used at some places in libcurl which | Daniel Stenberg | |
made libcurl sometimes not properly abort problematic SFTP transfers. | |||
2008-12-12 | 196 is gone | Daniel Stenberg | |
2008-12-12 | - More work with Igor Novoseltsev to first fix the remaining stuff for | Daniel Stenberg | |
removing easy handles from multi handles when the easy handle is/was within a HTTP pipeline. His bug report #2351653 (http://curl.haxx.se/bug/view.cgi?id=2351653) was also related and was eventually fixed by a patch by Igor himself. | |||
2008-12-12 | Make the getoff all pipelines function only set _inuse to FALSE if the | Daniel Stenberg | |
specified data pointer was head. | |||
2008-12-12 | credit Mark Karpeles for his report and work | Daniel Stenberg | |
2008-12-12 | Patrick Monnerat fixed a build regression, introduced in 7.19.2, affecting | Yang Tse | |
OS/400 compilations with IPv6 enabled. | |||
2008-12-11 | Removed 200 as it wasn't a bug after all | Daniel Stenberg | |
Added 203 "dns cache memory leak and TTL failure after failed conn" | |||
2008-12-11 | - Bug report #2416182 titled "crash in ConnectionExists when using | Daniel Stenberg | |
duphandle+curl_mutli" (http://curl.haxx.se/bug/view.cgi?id=2416182) showed that curl_easy_duphandle() wrongly also copied the pointer to the connection cache, which was plain wrong and caused a segfault if the handle would be used in a different multi handle than the handle it was duplicated from. | |||
2008-12-11 | Dan F pointed out that we don't need to scan IPv6 addresses for '%'-letters | Daniel Stenberg | |
in the parse_remote_port() function as the scope id has already been stripped from the string. | |||
2008-12-11 | - Keshav Krity found out that libcurl failed to deal with dotted IPv6 | Daniel Stenberg | |
addresses if they were very long (>39 letters) due to a too strict address validity parser. It now accepts addresses up to 45 bytes long. | |||
2008-12-11 | _ Use getaddrinfo/getnameinfo ascii wrappers on OS400. | Patrick Monnerat | |
_ Adjust OS400 make script for non-CVS distributions. _ Upgrade ILE/RPG binding. _ Define CURL_HIDDEN_SYMBOLS on OS400, since only CURL_EXTERN-marked symbols are exported. | |||
2008-12-11 | Mention what makes this test special | Dan Fandrich | |
2008-12-10 | - Internet Explorer had a broken HTTP digest authentication before v7 and | Daniel Stenberg | |
there are servers "out there" that relies on the client doing this broken Digest authentication. Apache even comes with an option to work with such broken clients. The difference is only for URLs that contain a query-part (a '?'-letter and text to the right of it). libcurl now supports this quirk, and you enable it by setting the CURLAUTH_DIGEST_IE bit in the bitmask you pass to the CURLOPT_HTTPAUTH or CURLOPT_PROXYAUTH options. They are thus individually controlled to server and proxy. | |||
2008-12-09 | use the new URL | Daniel Stenberg | |
2008-12-09 | start over on the 1.6.1 release... | Daniel Stenberg | |
2008-12-09 | add space | Daniel Stenberg | |
2008-12-09 | Documented CURLOPT_CONNECT_ONLY as being useful only on HTTP URLs. | Dan Fandrich | |
2008-12-09 | Added test cases 1089 and 1090 to test --write-out after a redirect to | Dan Fandrich | |
test a report that the size didn't work, but these test cases pass. | |||
2008-12-09 | - Ken Hirsch simplified how libcurl does FTPS: now it doesn't assume any | Daniel Stenberg | |
particular state for the control connection like it did before for implicit FTPS (libcurl assumed such control connections to be encrypted while some FTPS servers such as FileZilla assumes such connections to be clear mode). Use the CURLOPT_USE_SSL option to set your desired level. | |||
2008-12-09 | Fix for Win32 targets using Watt-32. | Gisle Vanem | |
2008-12-09 | C89 compilers (like Minix' ACK) only need to handle 31 functions arguments | Dan Fandrich | |
so split a long sprintf into two calls to get below that number. | |||
2008-12-08 | 195 - SIZE returning 550 must not abort the transfer | Daniel Stenberg | |
Fixed! | |||
2008-12-08 | - Fred Machado posted about a weird FTP problem on the curl-users list and when | Daniel Stenberg | |
researching it, it turned out he got a 550 response back from a SIZE command and then I fell over the text in RFC3659 that says: The presence of the 550 error response to a SIZE command MUST NOT be taken by the client as an indication that the file cannot be transferred in the current MODE and TYPE. In other words: the change I did on September 30th 2008 and that has been included in the last two releases were a regression and a bad idea. We MUST NOT take a 550 response from SIZE as a hint that the file doesn't exist. | |||
2008-12-08 | Added needed defines for Watt-32 on Windows. | Gisle Vanem | |
2008-12-08 | Undefine 'optarg', 'optind' and 'opterr' when using Watt-32 | Gisle Vanem | |
(to get correct linkage on Windows). | |||
2008-12-08 | ares_writev() shall not be exported when using Watt-32 (has writev). | Gisle Vanem | |
Added _USE_32BIT_TIME_T to avoid runtime warning. Applies to VC-2008+ only. | |||
2008-12-08 | Removed unneeded defines HAVE_SIGNAL_H, HAVE_SIG_ATOMIC_T, | Gisle Vanem | |
RETSIGTYPE and HAVE_PROCESS_H. | |||
2008-12-08 | one more | Daniel Stenberg | |
2008-12-08 | 192 - "infinite loop during GSS authentication" bug #2221237 | Daniel Stenberg | |
Fixed! | |||
2008-12-08 | - Christian Krause filed bug #2221237 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=2221237) that identified an infinite loop during GSS authentication given some specific conditions. With his patience and great feedback I managed to narrow down the problem and eventually fix it although I can't test any of this myself! | |||
2008-12-04 | the initial version of the ares_set_socket_callback man page | Daniel Stenberg | |
2008-12-04 | Gregor Jasny provided the patch that introduces ares_set_socket_callback(), | Daniel Stenberg | |
and I edited it to also get duped by ares_dup(). | |||
2008-12-04 | Bring the sys/include.h include test in line with curl's. | Dan Fandrich | |
2008-12-04 | Fixed the getifaddrs version of Curl_if2ip to work on systems without IPv6 | Dan Fandrich | |
support (e.g. Minix) | |||
2008-12-03 | - Igor Novoseltsev filed bug #2351645 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=2351645) that identified a problem with the multi interface that occured if you removed an easy handle while in progress and the handle was used in a HTTP pipeline. | |||
2008-12-03 | filled in SONAME number bump info, after some CVS digging | Daniel Stenberg | |
2008-12-03 | - Pawel Kierski pointed out a mistake in the cookie code that could lead to a | Daniel Stenberg | |
bad fclose() after a fatal error had occured. (http://curl.haxx.se/bug/view.cgi?id=2382219) | |||
2008-12-03 | Let's not call ares_save_options() deprecated just yet | Daniel Stenberg | |
2008-12-03 | Introduce ares_dup(3) and new thoughts about API/ABI and how to move forwards. | Daniel Stenberg | |
Also discussed on the ml. | |||
2008-12-02 | explain the two *channel_inuse fields somewhat better | Daniel Stenberg | |
2008-12-02 | Make sure sys/socket.h is included before netinet/in.h (required by | Dan Fandrich | |
OpenWatcom C, and condoned by SUS) | |||
2008-12-01 | minor indent fix | Daniel Stenberg | |
2008-12-01 | Convert the public config struct to the same binary size/construct as in the | Daniel Stenberg | |
latest releases to remain ABI compatible. | |||
2008-12-01 | added some more entries for stuff done the last ~2 years | Daniel Stenberg | |
2008-11-30 | People have successfully ran libcurl on iphone | Daniel Stenberg | |
2008-11-29 | Further adjust a libssh2 preprocessor function-symbol definition check | Yang Tse | |
2008-11-29 | Adjust some libssh2 preprocessor symbol definition checks | Yang Tse | |
2008-11-29 | Added '-DHAVE_GETHOSTNAME'. | Gisle Vanem | |
2008-11-29 | Make sure sys/socket.h is included before netinet/in.h (required by | Dan Fandrich | |
OpenWatcom C) |