Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-02-19 | fix compiler warnings: 'statement is unreachable' | Yang Tse | |
2008-02-19 | fix compiler warnings: 'enumerated type mixed with another type' | Yang Tse | |
2008-02-18 | https_getsock() should be static all over (and did some fixed indenting) | Daniel Stenberg | |
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 | - 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 | 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-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 | 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 | - Pooyan McSporran found and fixed a flaw where you first would do a normal | Daniel Stenberg | |
http request and then you'd reuse the handle and replace the Accept: header, as then libcurl would send two Accept: headers! | |||
2008-02-15 | fixed version var. | Gunter Knauf | |
2008-02-15 | moved info block up before help block so that it can also be displayed ↵ | Gunter Knauf | |
before help option; trial to add a version number. | |||
2008-02-11 | Yang Tse pointed out a few remaining quirks from my timeout refactoring from | Daniel Stenberg | |
Feb 7 that didn't abort properly on timeouts. These are actually old problems but now they should be fixed. | |||
2008-02-11 | open pipe to openssl commandline instead of writing into temp file. | Gunter Knauf | |
2008-02-11 | Fixed unused variable warning. | Dan Fandrich | |
2008-02-11 | added strict to make sure all vars are properly defined; | Gunter Knauf | |
added -t switch to make text info of CAs optional; added -q switch to be really quiet. | |||
2008-02-10 | Bug report #1888932 (http://curl.haxx.se/bug/view.cgi?id=1888932) points | Yang Tse | |
out and provides test program that demonstrates that libcurl might not set error description message for error CURLE_COULDNT_RESOLVE_HOST for Windows threaded name resolver builds. Fixed now. | |||
2008-02-10 | added -b switch to provide a backup functionality for existing ca-bundle.crt ↵ | Gunter Knauf | |
file. | |||
2008-02-09 | fixed another wrong var in error message. | Gunter Knauf | |
2008-02-09 | fixed wrong var in error message. | Gunter Knauf | |
2008-02-08 | - Mike Hommey filed and fixed bug report #1889856 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=1889856): When using the gnutls ssl layer, cleaning-up and reinitializing curl ends up with https requests failing with "ASN1 parser: Element was not found" errors. Obviously a regression added in 7.16.3. | |||
2008-02-08 | include mk-ca-bundle.pl in the tarballs | Daniel Stenberg | |
2008-02-08 | use argument to specify output filename if present. | Gunter Knauf | |
2008-02-08 | fixed regex to fetch certdata.txt version since it was replaced by CVS (argh!) | Gunter Knauf | |
added a switch to display certdata.txt version header. | |||
2008-02-08 | added Perl script to create a fresh ca-bundle.crt. | Gunter Knauf | |
2008-02-07 | - Refactored a lot of timeout code into a few functions in an attempt to make | Daniel Stenberg | |
them all use the same (hopefully correct) logic to make it less error-prone and easier to introduce library-wide where it should be used. | |||
2008-02-07 | ca-bundle.crt documentational updates that more clearly describe the bundle | Daniel Stenberg | |
ca-bundle.crt file as outdated and in need for replacement by anyone who wants to verify modern peers as the one we have is from year 2000! | |||
2008-02-06 | Fix problem in strdup replacement when dealing with absolutely huge strings. | Yang Tse | |
2008-02-04 | fixed entry symbols when linked with posix prelude. | Gunter Knauf | |
2008-02-04 | added makefile flag to link with NLM POSIX semantics. | Gunter Knauf | |
2008-02-03 | - Dmitry Kurochkin cleaned up the pipelining code and removed the need for and | Daniel Stenberg | |
use of the "is_in_pipeline" struct field. | |||
2008-01-31 | - Niklas Angebrand made the cookie support in libcurl properly deal with the | Daniel Stenberg | |
"HttpOnly" feature introduced by Microsoft and apparently also supported by Firefox: http://msdn2.microsoft.com/en-us/library/ms533046.aspx . HttpOnly is now supported when received from servers in HTTP headers, when written to cookie jars and when read from existing cookie jars. | |||
2008-01-31 | - Dmitry Kurochkin moved several struct fields from the connectdata struct to | Daniel Stenberg | |
the SingleRequest one to make pipelining better. It is a bit tricky to keep them in the right place, to keep things related to the actual request or to the actual connection in the right place. | |||
2008-01-29 | silent stupid 'del' message when no files to delete found; | Gunter Knauf | |
added curl.res to clean target. | |||
2008-01-29 | - Dmitry Kurochkin fixed Curl_done() for pipelining, as it could previously | Daniel Stenberg | |
crash! | |||
2008-01-28 | this was modified this year so we bump the copyright year | Daniel Stenberg | |
2008-01-27 | Dmitry Kurochkin: In "real world" testing I found more bugs in | Daniel Stenberg | |
pipelining. Broken connection is not restored and we get into infinite loop. It happens because of wrong is_in_pipeline values. | |||
2008-01-25 | - Kevin Reed filed bug report #1879375 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=1879375) which describes how libcurl got lost in this scenario: proxy tunnel (or HTTPS over proxy), ask to do any proxy authentication and the proxy replies with an auth (like NTLM) and then closes the connection after that initial informational response. libcurl would not properly re-initialize the connection to the proxy and continue the auth negotiation like supposed. It does now however, as it will now detect if one or more authentication methods were available and asked for, and will thus retry the connection and continue from there. - I made the progress callback get called properly during proxy CONNECT. | |||
2008-01-24 | updated makefiles to use global copyright define. | Gunter Knauf | |
2008-01-24 | minor makefile tweaks. | Gunter Knauf | |
2008-01-24 | use copyright define instead of hardcoded string. | Gunter Knauf | |
2008-01-23 | "Igor" pointed out that CURLOPT_COOKIELIST set to "ALL" leaked memory, and so | Daniel Stenberg | |
did "SESS". Fixed now. |