aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-12-15Add 'const' to immutable arrays.Dan Fandrich
2004-12-14clarify that the app must free the engine listDaniel Stenberg
2004-12-14prevent compiler warning when built without engine supportDaniel Stenberg
2004-12-14make sure the ipv6 http server gets its pid stored in a separate fileDaniel Stenberg
2004-12-14use the correct variables, not fixed valuesDaniel Stenberg
2004-12-14Harshal Pradhan fixed changing username/password on a persitent HTTPDaniel Stenberg
connection.
2004-12-14mistakeDaniel Stenberg
2004-12-14Only declare static variables if they're needed. Fixed some compile warnings.Dan Fandrich
2004-12-14Header files are in openssl/ only if USE_OPENSSL is set.Dan Fandrich
2004-12-14Removed fputc() prototype since it's already in stdio.hDan Fandrich
2004-12-14Caller must free 'engines' list.Gisle Vanem
2004-12-14urldata.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-14Moved the CURLE_SSL_ENGINE_INITFAILED error code last in the list so thatDaniel Stenberg
the others remain at previous values.
2004-12-14Moved the engine stuff from the root-level of the SessionHandle struct to theDaniel Stenberg
UrlState sub-struct. Also made the engine_list exist for non-ssl builds to make curl build.
2004-12-13Document CURLINFO_SSL_ENGINES and "--engine".Gisle Vanem
2004-12-13Set 'data->state.os_errno = error' in some places.Gisle Vanem
Needed elsewhere too?
2004-12-13Support for "--engine list" option.Gisle Vanem
Moved CURLOPT_SSLENGINE* options to after verbose mode is set. Added a goto. Eek!
2004-12-13Added handling of CURLINFO_SSL_ENGINES;Gisle Vanem
Added Curl_SSL_engines_list(), cleanup SSL in url.c (no HAVE_OPENSSL_x etc.).
2004-12-13Handle new type CURLINFO_SLIST.Gisle Vanem
Handle new info list CURLINFO_SSL_ENGINES.
2004-12-13Added 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-13Fixed missing braces warning.Gisle Vanem
2004-12-13large file file:// resumes on windowsDaniel Stenberg
2004-12-13Gisle's fix for resuming large file:// files on windows - slightly editedDaniel Stenberg
by me.
2004-12-13Dan Fandrich did minor corrections to his SSL cleanup patchDaniel Stenberg
2004-12-13Dan Fandrich added libcurl.pc.in to the distDaniel Stenberg
2004-12-12when failing to verify a HTTP server, display what curl said on stderr toDaniel Stenberg
help debugging. (when using ipv6 I fell over this server that didn't have the ipv6 module loaded)
2004-12-12Missing 'in6addr_any' in MingW's lib. ld bug?Gisle Vanem
2004-12-11modified to use the current error code name, not the obsolete oneDaniel Stenberg
2004-12-11undef more obsolete defines if CURL_NO_OLDIES is definedDaniel Stenberg
2004-12-11HTTP IPv6 support added to the test suiteDaniel Stenberg
2004-12-11provide an error string when resuming fails - and use the proper error code,Daniel Stenberg
not the former one
2004-12-11fixed error messageDaniel Stenberg
2004-12-11Dan 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-11Dan F's initial pkg-config file (not installed yet)Daniel Stenberg
2004-12-11mention the maybe-missing initial zero in the vernum outputDaniel Stenberg
2004-12-10Dan Fandrich: added some missing files. "I can't try them so they might stillDaniel Stenberg
be broken, but at least they'll be less broken than they are now."
2004-12-10Dan Fandrich corrects spelling mistakesDaniel Stenberg
2004-12-10Dan Fandrich extended the cross compile section and corrected spelling errorsDaniel Stenberg
2004-12-10untabifiedDaniel Stenberg
2004-12-10username and IPv6 numerical address URL parser fixDaniel Stenberg
2004-12-10David Byron's debug build fixDaniel Stenberg
2004-12-10move the port number extraction to after the extraction of user name/password,Daniel Stenberg
as suggested by Kai Sommerfeld
2004-12-10two new test cases for proxy-CONNECT with NTLM (one doing GET, one doing POST)Daniel Stenberg
2004-12-10don't try the rewind if no http struct is allocated yetDaniel Stenberg
2004-12-10configure and curl-config fixesDaniel Stenberg
2004-12-10Added two chapters: Custom Request Elements and Debug.Daniel Stenberg
2004-12-09ignore the getpart toolDaniel Stenberg
2004-12-09close the connection when a bad test number was requestedDaniel Stenberg
2004-12-09Ton Voon provided a configure fix that should fix the notorious (mostlyDaniel Stenberg
reported on Solaris) problem where the size_t check fails due to the SSL libs being found in a dir not searched through by the run-time linker. patch-tracker entry #1081707.
2004-12-09Bryan Henderson pointed out in bug report #1081788 that the curl-configDaniel Stenberg
--vernum output wasn't zero prefixed properly (as claimed in documentation). This is fixed in maketgz now.