- Jan 09, 2010
-
-
Daniel Stenberg authored
-
- Jan 08, 2010
-
-
Daniel Stenberg authored
ossl_connect_step3() increments an SSL session handle reference counter on each call. When sessions are re-used this reference counter may be incremented many times, but it will be decremented only once when done (by Curl_ossl_session_free()); and the internal OpenSSL data will not be freed if this reference count remains positive. When a session is re-used the reference counter should be corrected by explicitly calling SSL_SESSION_free() after each consecutive SSL_get1_session() to avoid introducing a memory leak. (http://curl.haxx.se/bug/view.cgi?id=2926284)
-
- Jan 07, 2010
-
-
Daniel Stenberg authored
the need for the struct forward declaration from http.h which caused problems with gcc 2.96 and quite frankly the parameter wasn't necessary anyway
-
Daniel Stenberg authored
function was moved to http.c and was made static and renamed
-
- Jan 06, 2010
-
-
Daniel Stenberg authored
name resolves when c-ares is used for resolving.
-
Claes Jakobsson authored
-
- Jan 03, 2010
-
-
Kamil Dudka authored
-
- Jan 01, 2010
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
command is a special "hack" used by the drftpd server, but even though it is a custom extension I've deemed it fine to add to libcurl since this server seems to survive and people keep using it and want libcurl to support it. The new libcurl option is named CURLOPT_FTP_USE_PRET, and it is also usable from the curl tool with --ftp-pret. Using this option on a server that doesn't support this command will make libcurl fail.
-
- Dec 31, 2009
-
-
Daniel Stenberg authored
receivers, and made the command line tool thus support the option specified many times
-
- Dec 30, 2009
-
-
Daniel Stenberg authored
user name
-
Daniel Stenberg authored
it in smtp.c
-
Daniel Stenberg authored
sequences in uploaded data. The test server doesn't "decode" escaped dot-lines but instead test cases must be written to take them into account. Added test case 803 to verify dot-escaping.
-
Yang Tse authored
-
Yang Tse authored
-
Yang Tse authored
-
- Dec 29, 2009
-
-
Daniel Stenberg authored
-
- Dec 25, 2009
-
-
Daniel Stenberg authored
end-of-body treatment
-
- Dec 20, 2009
-
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
- Dec 19, 2009
-
-
Daniel Stenberg authored
-
- Dec 17, 2009
-
-
Yang Tse authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
really didn't belong there and had no real point.
-
Daniel Stenberg authored
struct, and instead use the already stored string in the handler struct.
-
Daniel Stenberg authored
available.
-
- Dec 16, 2009
-
-
Daniel Stenberg authored
was a bit too quick and broke test case 1101 with that change. The order of some of the setups is sensitive. I now changed it slightly again.
-
- Dec 14, 2009
-
-
Daniel Stenberg authored
detects and uses proxies based on the environment variables. If the proxy was given as an explicit option it worked, but due to the setup order mistake proxies would not be used fine for a few protocols when picked up from '[protocol]_proxy'. Obviously this broke after 7.19.4. I now also added test case 1106 that verifies this functionality. (http://curl.haxx.se/bug/view.cgi?id=2913886)
-
Yang Tse authored
-
Yang Tse authored
-
- Dec 12, 2009
-
-
Daniel Stenberg authored
protocol-specific header files
-
Daniel Stenberg authored
-
- Dec 11, 2009
-
-
Yang Tse authored
See http://curl.haxx.se/mail/lib-2009-12/0107.html
-
Yang Tse authored
-
- Dec 10, 2009
-
-
Daniel Stenberg authored
accessing alredy freed memory and thus crash when using HTTPS (with OpenSSL), multi interface and the CURLOPT_DEBUGFUNCTION and a certain order of cleaning things up. I fixed it. (http://curl.haxx.se/bug/view.cgi?id=2891591)
-
Daniel Stenberg authored
-
- Dec 07, 2009
-
-
Daniel Stenberg authored
with unknown size. Previously it was only used for posts with a known size larger than 1024 bytes.
-
- Dec 02, 2009
-
-
Kamil Dudka authored
-
- Dec 01, 2009
-
-
Daniel Stenberg authored
curl_easy_setopt with CURLOPT_HTTPHEADER, the library should set data->state.expect100header accordingly - the current code (in 7.19.7 at least) doesn't handle this properly. Martin Storsjo provided the fix!
-
- Nov 28, 2009
-
-
Yang Tse authored
s/socklen_t/curl_socklen_t/g
-