Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-04-29 | Peter Kovacs provided a patch that makes the CURLINFO_CONNECT_TIME work fine | Daniel Stenberg | |
when using the multi interface (too). | |||
2003-04-25 | RSAglue.lib is no longer needed with recent OpenSSL versions | Daniel Stenberg | |
2003-04-22 | Dan Fandrich corrected the error messages on "bad encoding". | Daniel Stenberg | |
2003-04-22 | Dan Fandrich's gzip bugfix | Daniel Stenberg | |
2003-04-22 | Peter Sylvester pointed out that curl_easy_setopt() will always (wrongly) | Daniel Stenberg | |
return CURLE_OK no matter what happens. | |||
2003-04-15 | treat uploaded .html files as text/html by default | Daniel Stenberg | |
2003-04-14 | return the same error for the sslv2 "certificate verify failed" code | Daniel Stenberg | |
2003-04-14 | Restored the SSL error codes since they was broken in the 7.10.4 release, | Daniel Stenberg | |
also now attempt to detect and return the specific CACERT error code. | |||
2003-04-11 | Nic fixed so that Curl_client_write() must not be called with 0 lenth data. | Daniel Stenberg | |
I edited somewhat and removed trailing whitespaces. | |||
2003-04-11 | Nic Hines fixed this bug when deflate or gzip contents were downloaded using | Daniel Stenberg | |
chunked encoding. | |||
2003-04-11 | ah, move the zero byte too or havoc will occur | Daniel Stenberg | |
2003-04-11 | support ? as separator instead of / even if not protocol was given | Daniel Stenberg | |
2003-04-11 | Dan Fandrich's gzip patch applied | Daniel Stenberg | |
2003-04-11 | According to RFC959, CWD is supposed to return 250 on success, but | Daniel Stenberg | |
there seem to be non-compliant FTP servers out there that return 200, so we accept any '2xy' response now. | |||
2003-04-11 | show a verbose warning message in case cookie-saving fails, after | Daniel Stenberg | |
Ralph Mitchell's notification. | |||
2003-04-10 | Vlad Krupin's URL parsing patch to fix the URL parsing when the URL has no | Daniel Stenberg | |
slash after the host name, but still a ? and following "parameters". | |||
2003-04-09 | the default debugfunction shows incoming headers as well | Daniel Stenberg | |
2003-04-09 | timecond support added | Daniel Stenberg | |
made the Last-Modified (faked) header look correct using GMT always | |||
2003-04-08 | James Bursa fixed a flaw in the content-type extracting code that could | Daniel Stenberg | |
miss the first letter | |||
2003-04-08 | share.c added | Daniel Stenberg | |
2003-04-04 | Changed how boundary strings are generated. This new way uses 28 dashes | Daniel Stenberg | |
and 12 following hexadecimal letters, which seems to be what IE uses. This makes curl work smoother with more stupidly written server apps. Worked this out together with Martijn Broenland. | |||
2003-04-03 | spell fix | Daniel Stenberg | |
2003-04-03 | kill a compiler warning on cygwin | Daniel Stenberg | |
2003-03-31 | move the ssl config clone call to before the connectionexists call and then | Daniel Stenberg | |
also subsequently free the ssl struct if the connection struct is to be deleted | |||
2003-03-31 | testing, ignore this commit | Sterling Hughes | |
2003-03-31 | Fixup after talks with Richard Bramante. We should now make better | Daniel Stenberg | |
comparisons before re-using SSL connections and re-using SSL connection IDs. | |||
2003-03-31 | Guillaume Cottenceau's patch that adds CURLOPT_UNRESTRICTED_AUTH that | Daniel Stenberg | |
disables the host name check in the FOLLOWLOCATION code. With that option set, libcurl will send user+password to all hosts. | |||
2003-03-31 | Frankie Fong filed bug report #708708 which identified a problem with | Daniel Stenberg | |
ConnectionExists() when first doing a proxy connecto to a HTTPS site and then switching over to a HTTP connection to the same host. This fix corrects the problem. | |||
2003-03-25 | white space and indent fix | Daniel Stenberg | |
2003-03-24 | ignore getdate.c | Daniel Stenberg | |
2003-03-24 | Richard Bramante's provided a fix for a handle re-use problem seen when you | Daniel Stenberg | |
change options on an SSL-enabled connection between requests. | |||
2003-03-24 | Removed the "TC TrustCenter, Germany, Class 0 CA." certificate: | Daniel Stenberg | |
"It is a DEMO certificate and was never intended to be in any list of trusted CA certificates." (quote by Götz Babin-Ebell, trustcenter.de) | |||
2003-03-21 | Hopefully this change addresses these two bug reports: 707003 and 706624. | Daniel Stenberg | |
We need to make sure that when we init a 'connectdata' struct and then afterwards check for and re-use another one, we must be careful so that the newly set values are transmitted and used in the surviving connectdata struct. | |||
2003-03-19 | make the ENGINE depend on the USE_SSLEAY define too | Daniel Stenberg | |
2003-03-19 | typecast the conversion from const char * to char * | Daniel Stenberg | |
2003-03-19 | Rename getdate.c to getdate.c.cvs, since the "normal" build procedure do | Daniel Stenberg | |
imply that yacc/bison exists and can generate this file. Those without one of those tools can then checkout and rename the getdate.c.cvs file. | |||
2003-03-16 | regenerated from getdate.y | Daniel Stenberg | |
2003-03-16 | Juan F. Codagnone pointed out a missing thing from the march 2 fix | Daniel Stenberg | |
2003-03-15 | Gisle Vanem's fix to get this working nicely on windows | Daniel Stenberg | |
2003-03-15 | Gisle Vanem fixed a name collision with structure '"CONTEXT" in <winnt.h> | Daniel Stenberg | |
2003-03-15 | Sort out the ENGINE problems people seem to be having. Now we put all ENGINE | Daniel Stenberg | |
related stuff within HAVE_OPENSSL_ENGINE_H and we don't make any private typedef or similar if the header is missing... | |||
2003-03-14 | Nico Baggus little adjustment to build with OpenSSL 0.9.7 (the ENGINE thing) | Daniel Stenberg | |
2003-03-13 | Philippe Raoult needed this to build on FreeBSD | Daniel Stenberg | |
2003-03-12 | Made set_local_option() properly static as reported by Rick Jones | Daniel Stenberg | |
2003-03-12 | Prefix defines and symbols with CURL_ to reduce the risk of colliding with | Daniel Stenberg | |
various system's other defines. | |||
2003-03-11 | syntax error | Daniel Stenberg | |
2003-03-11 | Christophe Demory fixed the check to work better for non-blocking on HP-UX | Daniel Stenberg | |
systems. Bug report #701749. | |||
2003-03-11 | Use ssize_t instead of 'int' to make the 64 bit sparc compiler happier. | Daniel Stenberg | |
Fix by Richard Gorton. | |||
2003-03-11 | Richard Gorton improved the random_the_seed() function for systems where | Daniel Stenberg | |
we don't find/know of a good random source. This way, we get a better randomness which in turn should make SSL connections more secure. | |||
2003-03-11 | Martin C. Martin's fix to produce an error message in case of failure | Daniel Stenberg | |
in the Curl_is_connected() function. |