- Apr 21, 2009
- Apr 20, 2009
-
-
Daniel Stenberg authored
how it occurs (http://curl.haxx.se/mail/lib-2009-04/0289.html). The conclusion was that if an error is detected and Curl_done() is called for the connection, ftp_done() could at times return another error code that then would take precedence and that new code confused existing logic that works for the first error code (CURLE_SEND_ERROR) only.
-
- Apr 19, 2009
-
-
Yang Tse authored
-
- Apr 18, 2009
-
-
Gisle Vanem authored
-
Gisle Vanem authored
-
- Apr 17, 2009
-
-
Daniel Stenberg authored
proxy. libcurl would then wrongly close the connection after each request. In his case it had the weird side-effect that it killed NTLM auth for the proxy causing an inifinite loop! I added test case 1098 to verify this fix. The test case does however not properly verify that the transfers are done persistently - as I couldn't think of a clever way to achieve it right now - but you need to read the stderr output after a test run to see that it truly did the right thing.
-
Yang Tse authored
-
- Apr 16, 2009
-
-
Yang Tse authored
-
- Apr 15, 2009
-
-
Guenter Knauf authored
-
- Apr 14, 2009
-
-
Yang Tse authored
-
Daniel Stenberg authored
-
Yang Tse authored
-
Yang Tse authored
-
Yang Tse authored
-
Daniel Stenberg authored
-
- Apr 13, 2009
-
-
http://curl.haxx.se/bug/view.cgi?id=2727981Daniel Stenberg authored
Storsjo pointed out how setting CURLOPT_NOBODY to 0 could be downright confusing as it set the method to either GET or HEAD. The example he showed looked like: curl_easy_setopt(curl, CURLOPT_PUT, 1); curl_easy_setopt(curl, CURLOPT_NOBODY, 0); The new way doesn't alter the method until the request is about to start. If CURLOPT_NOBODY is then 1 the HTTP request will be HEAD. If CURLOPT_NOBODY is 0 and the request happens to have been set to HEAD, it will then instead be set to GET. I believe this will be less surprising to users, and hopefully not hit any existing users badly.
-
Daniel Stenberg authored
out to be leaking cacerts. Kamil Dudka helped me complete the fix. The issue is found in Redhat's bug tracker: https://bugzilla.redhat.com/show_bug.cgi?id=453612 There are still memory leaks present, but they seem to have other reasons.
-
Yang Tse authored
-
- Apr 11, 2009
-
-
Dan Fandrich authored
Improved Symbian support for SSL.
-
Yang Tse authored
Avoid unnecessary'if-else' nesting.
-
Yang Tse authored
-
- Apr 09, 2009
-
-
Benoit Neil authored
-
Guenter Knauf authored
-
- Apr 08, 2009
-
-
Benoit Neil authored
-
Benoit Neil authored
-
- Apr 06, 2009
-
-
Benoit Neil authored
-
Benoit Neil authored
PS: Once again, sorry if the added files have executable perms on Linux.
-
Benoit Neil authored
PS: Sorry if the added file has executable perms on Linux, I didn't found anything related to it...
-
Benoit Neil authored
Removed the "lib" prefix under linux ("was "liblibcurl") and fixed import library name under Win32 (Added "_imp" for dynamically linked).
-
- Apr 03, 2009
-
-
Yang Tse authored
-
- Apr 02, 2009
-
-
Benoit Neil authored
-
Benoit Neil authored
Initial CMake scripts (libcurl only), based on the merge of tetest scripts and mine. These are far to be functionnal yet. PS: Hello world :)
-
- Apr 01, 2009
-
-
Daniel Stenberg authored
strdup() call failed.
-
- Mar 31, 2009
-
-
Dan Fandrich authored
-
- Mar 29, 2009
-
-
Guenter Knauf authored
-
- Mar 18, 2009
-
-
Daniel Stenberg authored
NSS is used. These ciphers were added in NSS 3.4 and require to be enabled explicitly.
-
- Mar 15, 2009
-
-
Gisle Vanem authored
If CURL_DISABLE_PROXY is defined, we must allow socks_sspi.c to call Curl_blockread_all(). It is needed in code inside USE_WINDOWS_SSPI.
-
- Mar 13, 2009
-
-
Daniel Stenberg authored
library is found to support it.
-
- Mar 12, 2009
-
-
Yang Tse authored
-