Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-02-25 | - Kaspar Brand made GnuTLS-built libcurl properly acknowledge the option that | Daniel Stenberg | |
forces it to prefer SSLv3. | |||
2008-02-23 | now builds and runs with GnuTLS-built libcurls too | Daniel Stenberg | |
2008-02-23 | - Sam Listopad provided a patch in feature-request #1900014 | Daniel Stenberg | |
http://curl.haxx.se/bug/feature.cgi?id=1900014 that makes libcurl (built to use OpenSSL) support a full chain of certificates in a given PKCS12 certificate. | |||
2008-02-22 | - Georg Lippitsch made the src/Makefile.vc6 makefile use the same memory model | Daniel Stenberg | |
options as the lib/Makefile.vc6 already did. | |||
2008-02-22 | Revert sockfilt.c back to revision 1.42 | Yang Tse | |
Changes introduced in revision 1.43 were useless | |||
2008-02-21 | - Zmey Petroff found a crash when libcurl accessed a NULL pointer, which | Daniel Stenberg | |
happened if you set the connection cache size to 1 and for example failed to login to an FTP site. Bug report #1896698 (http://curl.haxx.se/bug/view.cgi?id=1896698) | |||
2008-02-21 | fixed missing header; changed bail out from exit() to return(). | Gunter Knauf | |
Mentioned on the list by Michal Marek. | |||
2008-02-21 | assert that the *connp is a non-NULL pointer when Curl_done() is called | Daniel Stenberg | |
2008-02-20 | Avoid timeout restart when signal caught while awaiting socket and stdin events | Yang Tse | |
2008-02-20 | reformatted comment. | Gunter Knauf | |
2008-02-20 | added read callback function in order to prevent crashs on Win32 when linked ↵ | Gunter Knauf | |
against DLL: | |||
2008-02-20 | - Fixed test case 405 to not fail when libcurl is built with GnuTLS | Daniel Stenberg | |
2008-02-20 | made the non-matching error code output nicer since we know it is a number | Daniel Stenberg | |
and the string contains a newline... | |||
2008-02-20 | mention removal of SSLv2 by default. | Gunter Knauf | |
2008-02-20 | oops, fixed to build | Daniel Stenberg | |
2008-02-20 | "118 - Gautam Kachroo's issue with proxies and ssl" is now in CVS | Daniel Stenberg | |
2008-02-20 | - Based on initial work done by Gautam Kachroo to address a bug, we now keep | Daniel Stenberg | |
better control at the exact state of the connection's SSL status so that we know exactly when it has completed the SSL negotiation or not so that there won't be accidental re-uses of connections that are wrongly believed to be in SSL-completed-negotiate state. | |||
2008-02-20 | - We no longer support setting the CURLOPT_URL option from inside a callback | Daniel Stenberg | |
such as the CURLOPT_SSL_CTX_FUNCTION one treat that as if it was a Location: following. The patch that introduced this feature was done for 7.11.0, but this code and functionality has been broken since about 7.15.4 (March 2006) with the introduction of non-blocking OpenSSL "connects". It was a hack to begin with and since it doesn't work and hasn't worked correctly for a long time and nobody has even noticed, I consider it a very suitable subject for plain removal. And so it was done. | |||
2008-02-19 | applied patch to disable SSLv2 by default; discussion: | Gunter Knauf | |
http://sourceforge.net/tracker/index.php?func=detail&aid=1767276&group_id=976&atid=350976 Submitted by Kaspar Brand. | |||
2008-02-19 | Added test309 to test HTTP redirect to HTTPS URL | Dan Fandrich | |
2008-02-19 | juggle() actually returns bool. | Yang Tse | |
Remove redundant and unreachable log message. | |||
2008-02-19 | fix compiler warnings: 'statement is unreachable' | Yang Tse | |
2008-02-19 | fix for new codestyle. | Gunter Knauf | |
2008-02-19 | made changes to work with Win32; | Gunter Knauf | |
replaced fstat() with stat() call and bail out if local file not found. | |||
2008-02-19 | fix compiler warnings: 'enumerated type mixed with another type' | Yang Tse | |
2008-02-18 | Reduce to 20 seconds the time allowed to set SO_REUSEADDR option on sockfilt ↵ | Yang Tse | |
listener socket. Log some more error descriptions. | |||
2008-02-18 | https_getsock() should be static all over (and did some fixed indenting) | Daniel Stenberg | |
2008-02-18 | the ca-bundle is now removed | Daniel Stenberg | |
2008-02-18 | added makefile for MingW32 to build most of the samples. | Gunter Knauf | |
2008-02-18 | moved sample program defines into separate Makefile.inc so that other ↵ | Gunter Knauf | |
makefiles can pick up the defines from there. | |||
2008-02-18 | added check symbol for linking with POSIX prelude. | Gunter Knauf | |
2008-02-18 | fix compiler warnings: | Yang Tse | |
'enumerated type mixed with another type' and 'variable was set but never used' | |||
2008-02-18 | just mention in --cacert that curl normally has a default ca cert path built-in | Daniel Stenberg | |
2008-02-18 | the ca-bundle is no longer shipped | Daniel Stenberg | |
2008-02-18 | - We're no longer providing a very old ca-bundle in the curl tarball. You can | Daniel Stenberg | |
get a fresh one downloaded and created with 'make ca-bundle' or you can get one from here => http://curl.haxx.se/docs/caextract.html if you want a fresh new one extracted from Mozilla's recent list of ca certs. The configure option --with-ca-bundle now lets you specify what file to use as default ca bundle for your build. If not specified, the configure script will check a few known standard places for a global ca cert to use. | |||
2008-02-17 | - Jerome Muffat-Meridol helped me fix Curl_done() to close the current | Daniel Stenberg | |
connection by force when it was called before the entire request is completed, simply because we can't know if the connection really can be re-used safely at that point. | |||
2008-02-17 | rephrased comment | Daniel Stenberg | |
2008-02-17 | In Curl_done() if premature is TRUE, it means this connection was said to be | Daniel Stenberg | |
DONE before the entire request operation is complete and thus we can't know in what state it is for re-using, so we're forced to close it. In a perfect world we can add code that keep track of if we really must close it here or not, but currently we have no such detail knowledge. Jerome Muffat-Meridol helped us work this out. | |||
2008-02-17 | don't do the GOT_NOTHING error check if the DONE function was called with | Daniel Stenberg | |
premature set TRUE, which means it was done before the request comleted. It could then very well not have received any data. | |||
2008-02-17 | added a comment about the ignoring of the Curl_done() return code | Daniel Stenberg | |
2008-02-17 | sockfilt will quit when orphaned | Yang Tse | |
2008-02-16 | oops, that was debug code not meant to be committed like this... | Daniel Stenberg | |
2008-02-16 | fix warnings about shadowing | Daniel Stenberg | |
2008-02-16 | seems that curently we dont need the imports from (l)ldapx.imp. | Gunter Knauf | |
2008-02-16 | fixed linker def file for tools when compiled with gcc/nlmconv. | Gunter Knauf | |
2008-02-16 | re-ordered the module dependency list; | Gunter Knauf | |
removed unsused ldap module dependency since the module didnt autounload from protected address space. | |||
2008-02-15 | - Made the gnutls code path not even try to get the server cert if no peer | Daniel Stenberg | |
verification is requested. Previously it would even return failure if gnutls failed to get the server cert even though no verification was asked for. - Fix my Curl_timeleft() leftover mistake in the gnutls code | |||
2008-02-15 | mention that we explicitly ignore the return code | Daniel Stenberg | |
2008-02-15 | log SSH public key authentication failure and reason | Yang Tse | |
2008-02-15 | new mirror and mirror recount after cleansing | Daniel Stenberg | |