aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2003-09-19Markus Moeller's SPNEGO patch applied, with my edits, additions and minorDaniel Stenberg
cleanups.
2003-09-15If a connection is closed down and it had some kind of NTLM involved, weDaniel Stenberg
reset the authentication state to make it restart on the next connection. This of course because NTLM is connection-oriented, whilst all other authentication schemes are not.
2003-09-15When we issue a HTTP request, first make sure if the authentication phaseDaniel Stenberg
is over or not, as if it isn't we shall not begin any PUT or POST operation. This cures bug report #805853, and test case 88 verifies it!
2003-09-14new ares patch uploadedDaniel Stenberg
2003-09-14reverted the change that blanks LIBSDaniel Stenberg
2003-09-14Jeff Pohlmeyer did some marvelous debugging to track this one down. We MUSTDaniel Stenberg
NOT free the existing hash entry when we try to add a new one that matches an existing entry. We now instead free the new one, and make the parent function use the old entry's struct instead.
2003-09-12blank the LIBS variable, as we don't need any libs when we link the lib.Daniel Stenberg
2003-09-11Tim Bartley's patch that makes the GSSNEGOTIATE option work for Microsoft'sDaniel Stenberg
"Negotiate" authentication as well.
2003-09-11For easy handles within multi handles, we share the DNS cache always.Daniel Stenberg
2003-09-11#ifdef 0'ed Curl_llist_insert_prev and Curl_llist_remove_next, as they areDaniel Stenberg
not used by any code in libcurl!
2003-09-11don't use a blank proxyDaniel Stenberg
2003-09-11Curl_is_resolved(): FD_ZERO the file descriptors before we call ares_fds().Daniel Stenberg
Problem tracked down by Bjorn Reese.
2003-09-07do not use 'long' to store 4 bytes, as 64bit architectures have 64bit longs.Daniel Stenberg
2003-09-05Uses less macros. #ifdef'ed out unused functions. Edited slightly to beDaniel Stenberg
more in the same style as other curl source code. The only actual code change is an added check after a malloc() call.
2003-09-04no user or password set, bail outDaniel Stenberg
2003-09-04ah, this change broke multiple test casesDaniel Stenberg
2003-09-04Jörg pointed out that I did this fix wrongly, now authwant is clearedDaniel Stenberg
properly if no auth is available
2003-09-04Based on Joerg Mueller-Tolk's patch, this introduces support forDaniel Stenberg
CURLINFO_HTTPAUTH_AVAIL and CURLINFO_PROXYAUTH_AVAIL
2003-09-041. store the httpproxycode in the loop after it is parsedDaniel Stenberg
2. made Curl_http_auth_act() reset 'authavail' unconditionally
2003-09-04avoid proxy (and other) auth if no user+password is givenDaniel Stenberg
2003-09-04added the missing share-functions, pointed out by Edward ChanDaniel Stenberg
2003-09-03Early Ehlinger's CURLOPT_FTP_RESPONSE_TIMEOUT patch applied.Daniel Stenberg
2003-09-03Re-arranged code to make the proxy-CONNECT loop able to do some of theDaniel Stenberg
authentication negotiations needed for NTLM, Digest etc.
2003-09-03Joerg Mueller-Tolk's fix to better deal with user+passwords for proxiesDaniel Stenberg
2003-09-03minor fix to make better bail-out checkDaniel Stenberg
2003-09-03warn if no CN is available if verify is only set to 1Daniel Stenberg
2003-09-02wrap at 80 colsDaniel Stenberg
2003-09-01Henrik Storner's update to make libcurl work with OpenLDAP 2.1.22 (current).Daniel Stenberg
Also reported to work with OpenLDAP 2.0.26.
2003-09-01The error buffer was not getting filled when Curl_wait_for_resolv() fails.Daniel Stenberg
Jeff Pohlmeyer fixed.
2003-08-29typecase to please the compiler godsDaniel Stenberg
2003-08-29typecast to prevent compiler warningDaniel Stenberg
2003-08-28CURLOPT_BUFFERSIZE must not be smaller than 0 (zero) as that is impossibleDaniel Stenberg
for us to deal with
2003-08-28only do chmod if there's a file presentDaniel Stenberg
2003-08-24added the strcasecmp() proto here (moved from setup.h), as this is theDaniel Stenberg
only file within libcurl to use that function
2003-08-24removed the strcasecmp() proto from here, and moved it to the strequal.cDaniel Stenberg
file instead
2003-08-22have cwd_and_mkd prefixed with ftp_ to make it appear as a ftp-onlyDaniel Stenberg
function
2003-08-22use proper type to prevent compiler warningDaniel Stenberg
2003-08-21Vincent Sanders provided a fix for name resolving when linked with uClibc.Daniel Stenberg
2003-08-20CURLINFO_RESPONSE_CODE replaces CURLINFO_HTTP_CODEDaniel Stenberg
2003-08-20store the FTP response code in the httpcode variableDaniel Stenberg
2003-08-20removed the goto and re-indented slightlyDaniel Stenberg
2003-08-20transfer fix for multi interfaceDaniel Stenberg
2003-08-20made curl_multi_info_read() set 'msgs_in_queue' to 0 even when it returnsDaniel Stenberg
NULL!
2003-08-19make sure the 'done' variable is always set to something in theDaniel Stenberg
Curl_is_resolved() function
2003-08-19Respect HAVE_LONGLONG to support 'long long'Daniel Stenberg
2003-08-19CRYPTO_cleanup_all_ex_data() is not present in all OpenSSL versions soDaniel Stenberg
we need to check for its presence in the configure script
2003-08-19don't set done==TRUE if the host name doesn't resolveDaniel Stenberg
2003-08-19Loren Kirkby pointed out that we need to call CRYPTO_cleanup_all_ex_data()Daniel Stenberg
when we cleanup the SSL stuff to not leak any memory. I wish this was documented anywhere.
2003-08-17setting WRITEFUNCTION or READFUNCTION to NULL will now reset the callbackDaniel Stenberg
pointers to the internal default functions
2003-08-14Possible code for large file support, added within #if 0 so far.Daniel Stenberg