- Mar 09, 2011
-
-
Daniel Stenberg authored
... since search engines find what they think is a URL in this, they hammer www.haxx.se on this port!
-
Daniel Stenberg authored
-
Dan Fandrich authored
-
- Mar 08, 2011
-
-
Daniel Stenberg authored
-
Todd A Ouska authored
This is the modified existing files commit.
-
Todd A Ouska authored
CyaSSL (available from git@github.com:cyassl/cyassl.git) has been added to the SSL abstraction layer. To test: 1) git CyaSSL sources 2) autoreconf -i 3) ./configure --disable-static 4) make 5) sudo make install 6) autoreconf -i 7) git curl sources (and this patch) 8) ./configure --disable-shared --with-cyassl --without-ssl --enable-debug 9) make 10) normal testing Please send questions or comments to todd@yassl.com .
-
Daniel Stenberg authored
Stress that it is for client certificates and then mention that it also works for all other SSL-based protocols apart from HTTPS and FTPS. Namely POP3S, IMAPS and SMTPS for now.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Accidentally not included in commit 0e74e1d8
-
Dan Fandrich authored
-
- Mar 07, 2011
-
-
Henry Ludemann authored
Add test 582 for uploading a file using sftp and the multi interface. (Patch and test slightly tweaked by Daniel Stenberg) Initially marked as disabled until it is fixed in the source.
-
Daniel Stenberg authored
-
- Mar 06, 2011
-
-
Daniel Stenberg authored
The end-of-file #endif in rawstr.h was not correcly positioned after all prototypes. Reported by: Boris Bug: http://curl.haxx.se/bug/view.cgi?id=3195205
-
- Mar 04, 2011
-
-
Dan Fandrich authored
-
Dan Fandrich authored
-
Dan Fandrich authored
-
Dan Fandrich authored
Test 558 was just a subset of 559 which is something that can be easily added later.
-
Dan Fandrich authored
-
Dan Fandrich authored
These are for when a test failure makes it impossible to continue running further tests.
-
Stefan Krause authored
-
- Feb 26, 2011
-
-
Daniel Stenberg authored
libssh2_knownhost_readfile() returns a negative value on error or otherwise number of parsed known hosts - this was previously not documented correctly in the libssh2 man page for the function. Bug: http://curl.haxx.se/mail/lib-2011-02/0327.html Reported by: murat
-
Julien Chaffraix authored
|premature| is used in Curl_http_done.
-
Julien Chaffraix authored
-
- Feb 23, 2011
-
-
Daniel Stenberg authored
-
- Feb 22, 2011
-
-
Daniel Stenberg authored
The stopserver function would append pids to kill and could append them without separating them with space properly. The result would be a very large number that by (some implementations of) kill would be interpreted as a negative number and that process group would be wiped... Bug: http://curl.haxx.se/bug/view.cgi?id=3188836 Reported by: Greg Pratt
-
Kamil Dudka authored
Flaw introduced in fc77790b and present in curl-7.21.4. Bug: https://bugzilla.redhat.com/669702#c16
-
- Feb 21, 2011
-
-
Daniel Stenberg authored
Extend the docs to clarify that CURLOPT_SSH_KEYFUNCTION is only called if the known hosts option is also correctly set!
-
Julien Chaffraix authored
CURLOPT_HTTPAUTH was mentioning CURLOPT_USERPASSWORD instead of CURLOPT_PASSWORD. Reported by: Mike Henshaw
-
Julien Chaffraix authored
This is not needed anymore as we have unit testing running on it.
-
Julien Chaffraix authored
Removed the "netrc_debug" keyword replaced with --netrc-file additions. Removed the debug code from Curl_parsenetrc as it is superseeded by --netrc-file.
-
Julien Chaffraix authored
This enables people to specify a path to the netrc file to use. The new option override --netrc if both are present. However it does follow --netrc-optional if specified.
-
- Feb 18, 2011
-
-
Mike Crowe authored
After a request times out, the connection wasn't properly closed and prevented to get re-used, so subsequent transfers could still mistakenly get to use the previously aborted connection.
-
Daniel Stenberg authored
When failing to connect the protocol during the CURLM_STATE_PROTOCONNECT state, Curl_done() has to be called with the premature flag set TRUE as for the pingpong protocols this can be important. When Curl_done() is called with premature == TRUE, it needs to call Curl_disconnect() with its 'dead_connection' argument set to TRUE as well so that any protocol handler's disconnect function won't attempt to use the (control) connection for anything. This problem caused the pingpong protocols to fail to disconnect when STARTTLS failed. Reported by: Alona Rossen Bug: http://curl.haxx.se/mail/lib-2011-02/0195.html
-
Hoi-Ho Chan authored
Signed-off-by: Hoi-Ho Chan <hoiho.chan@gmail.com>
-
- Feb 17, 2011
-
-
Daniel Stenberg authored
I forgot to sort it when I added the CURL_SOCKOPT_* symbols
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Introducing a few CURL_SOCKOPT* defines for conveniance. The new CURL_SOCKOPT_ALREADY_CONNECTED signals to libcurl that the socket is to be treated as already connected and thus it will skip the connect() call.
-
Kamil Dudka authored
-
Daniel Stenberg authored
-