Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-12-15 | yet another mirror! | Daniel Stenberg | |
2004-12-15 | precaution to prevent double typedefs of the bool | Daniel Stenberg | |
2004-12-15 | moved the bool typedef to setup.h | Daniel Stenberg | |
2004-12-15 | fixed how backslashes are treated in glob strings | Daniel Stenberg | |
2004-12-15 | Make some arrays of pointers const, too. | Dan Fandrich | |
2004-12-15 | Make some arrays of pointers const, too. | Dan Fandrich | |
2004-12-15 | Add 'const' to immutable arrays. | Dan Fandrich | |
2004-12-14 | clarify that the app must free the engine list | Daniel Stenberg | |
2004-12-14 | prevent compiler warning when built without engine support | Daniel Stenberg | |
2004-12-14 | make sure the ipv6 http server gets its pid stored in a separate file | Daniel Stenberg | |
2004-12-14 | use the correct variables, not fixed values | Daniel Stenberg | |
2004-12-14 | Harshal Pradhan fixed changing username/password on a persitent HTTP | Daniel Stenberg | |
connection. | |||
2004-12-14 | mistake | Daniel Stenberg | |
2004-12-14 | Only declare static variables if they're needed. Fixed some compile warnings. | Dan Fandrich | |
2004-12-14 | Header files are in openssl/ only if USE_OPENSSL is set. | Dan Fandrich | |
2004-12-14 | Removed fputc() prototype since it's already in stdio.h | Dan Fandrich | |
2004-12-14 | Caller must free 'engines' list. | Gisle Vanem | |
2004-12-14 | urldata.h: Removed engine_list. | Gisle Vanem | |
ssluse.*: Added SSL_strerror(). Curl_SSL_engines_list() now returns a slist which must be freed by caller. | |||
2004-12-14 | Moved the CURLE_SSL_ENGINE_INITFAILED error code last in the list so that | Daniel Stenberg | |
the others remain at previous values. | |||
2004-12-14 | Moved the engine stuff from the root-level of the SessionHandle struct to the | Daniel Stenberg | |
UrlState sub-struct. Also made the engine_list exist for non-ssl builds to make curl build. | |||
2004-12-13 | Document CURLINFO_SSL_ENGINES and "--engine". | Gisle Vanem | |
2004-12-13 | Set 'data->state.os_errno = error' in some places. | Gisle Vanem | |
Needed elsewhere too? | |||
2004-12-13 | Support for "--engine list" option. | Gisle Vanem | |
Moved CURLOPT_SSLENGINE* options to after verbose mode is set. Added a goto. Eek! | |||
2004-12-13 | Added handling of CURLINFO_SSL_ENGINES; | Gisle Vanem | |
Added Curl_SSL_engines_list(), cleanup SSL in url.c (no HAVE_OPENSSL_x etc.). | |||
2004-12-13 | Handle new type CURLINFO_SLIST. | Gisle Vanem | |
Handle new info list CURLINFO_SSL_ENGINES. | |||
2004-12-13 | Added CURLcode CURLE_SSL_ENGINE_INITFAILED, | Gisle Vanem | |
Added CURLINFO_SLIST type for returing a 'struct slist' in curl_easy_getinfo(). Added CURLINFO_SSL_ENGINES. | |||
2004-12-13 | Fixed missing braces warning. | Gisle Vanem | |
2004-12-13 | large file file:// resumes on windows | Daniel Stenberg | |
2004-12-13 | Gisle's fix for resuming large file:// files on windows - slightly edited | Daniel Stenberg | |
by me. | |||
2004-12-13 | Dan Fandrich did minor corrections to his SSL cleanup patch | Daniel Stenberg | |
2004-12-13 | Dan Fandrich added libcurl.pc.in to the dist | Daniel Stenberg | |
2004-12-12 | when failing to verify a HTTP server, display what curl said on stderr to | Daniel Stenberg | |
help debugging. (when using ipv6 I fell over this server that didn't have the ipv6 module loaded) | |||
2004-12-12 | Missing 'in6addr_any' in MingW's lib. ld bug? | Gisle Vanem | |
2004-12-11 | modified to use the current error code name, not the obsolete one | Daniel Stenberg | |
2004-12-11 | undef more obsolete defines if CURL_NO_OLDIES is defined | Daniel Stenberg | |
2004-12-11 | HTTP IPv6 support added to the test suite | Daniel Stenberg | |
2004-12-11 | provide an error string when resuming fails - and use the proper error code, | Daniel Stenberg | |
not the former one | |||
2004-12-11 | fixed error message | Daniel Stenberg | |
2004-12-11 | Dan Fandrich: | Daniel Stenberg | |
Here's a stab at a consolidation of the SSL detection heuristics into configure. Source files aren't changed by this patch, except for setup.h and the various config*.h files. Within the configure script, OPENSSL_ENABLED is used to determine if SSL is being used or not, and outside configure, USE_SSLEAY means the same thing; this could be even further unified some day. Now, when SSL is not detected, configure skips the various checks that are dependent on SSL, speeding up the configure process and avoiding complications with cross compiles. I also updated all the architecture- specific config files I could see, but I couldn't test them. | |||
2004-12-11 | Dan F's initial pkg-config file (not installed yet) | Daniel Stenberg | |
2004-12-11 | mention the maybe-missing initial zero in the vernum output | Daniel Stenberg | |
2004-12-10 | Dan Fandrich: added some missing files. "I can't try them so they might still | Daniel Stenberg | |
be broken, but at least they'll be less broken than they are now." | |||
2004-12-10 | Dan Fandrich corrects spelling mistakes | Daniel Stenberg | |
2004-12-10 | Dan Fandrich extended the cross compile section and corrected spelling errors | Daniel Stenberg | |
2004-12-10 | untabified | Daniel Stenberg | |
2004-12-10 | username and IPv6 numerical address URL parser fix | Daniel Stenberg | |
2004-12-10 | David Byron's debug build fix | Daniel Stenberg | |
2004-12-10 | move the port number extraction to after the extraction of user name/password, | Daniel Stenberg | |
as suggested by Kai Sommerfeld | |||
2004-12-10 | two new test cases for proxy-CONNECT with NTLM (one doing GET, one doing POST) | Daniel Stenberg | |
2004-12-10 | don't try the rewind if no http struct is allocated yet | Daniel Stenberg | |