aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
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
2003-08-14Curl_SSL_InitSessions can return error, so check the return code and bailDaniel Stenberg
out if necessary
2003-08-14Curl_llist_destroy() checks the input for non-NULLDaniel Stenberg
2003-08-14new proto for Curl_hash_initDaniel Stenberg
2003-08-141. check allocsDaniel Stenberg
2. don't leave allocated memory behind when returning error
2003-08-14return failure when the host cache creation failsDaniel Stenberg
2003-08-14prevent memory leak when going out of memoryDaniel Stenberg
2003-08-14allow out-of-memory testing by setting a limit. That number of memoryDaniel Stenberg
allocation calls will succeed, the following will return NULL!
2003-08-12Bugfix from Serge Semashko that fixes a bug introduced when we applied hisDaniel Stenberg
NTLM patch. Test case 84 and 85 verify this.
2003-08-11Added support for CURLINFO_HTTP_CONNECTCODEDaniel Stenberg
2003-08-11bindlocal works for Windows!Daniel Stenberg
2003-08-11Set the CURL_VERSION_ASYNCHDNS bit if USE_ARES is defined.Daniel Stenberg
2003-08-11added include "http.h" to prevent a warningDaniel Stenberg
2003-08-11use safefree insteadDaniel Stenberg
2003-08-11memory leak fixed when re-using connections with proxy user+passwdDaniel Stenberg
2003-08-11Serge Semashko added CURLOPT_PROXYAUTH support, and now NTLM for proxiesDaniel Stenberg
work.
2003-08-11the new cookie functions that require 'data' passed inDaniel Stenberg
2003-08-11support sending off cookies without contentsDaniel Stenberg
2003-08-11Added some infof() calls, that require the data pointer so now severalDaniel Stenberg
cookie functions need that. I also fixed the cookie loader to properly load and deal with cookies without contents (or rather with a blank content).
2003-08-11Dirk Manske's bugfix for the share stuffDaniel Stenberg
2003-08-10don't claim the PASV connect is connected unless it *really* is!Daniel Stenberg
2003-08-08make sure the string is long enoughDaniel Stenberg
2003-08-08David Byron's fix for file:// URLs with drive letters included.Daniel Stenberg
2003-08-08chmod the cabundle file before we attempt to write to it, to makeDaniel Stenberg
make distcheck run fine
2003-08-08re-arranged the cwd/mkd stuff a bitDaniel Stenberg
2003-08-08Early Ehlinger's CURLOPT_FTP_CREATE_MISSING_DIRS patch was appliedDaniel Stenberg
2003-08-07use 644 for the chmodDaniel Stenberg
2003-08-06argh, it wasn't *that* easy to generate the ca-bundle header in the buildDaniel Stenberg
dir instead of the source dir, reverting that change
2003-08-06fix the treatment of the variable width specifier '*', which caused a bugDaniel Stenberg
in the urlglobbing just now, fixed in the debian bug tracker as Bug#203827
2003-08-06generate the ca-bundle.h in the build dir, and also make sure to chmodDaniel Stenberg
the file in the dist-hook to make distcheck run fine
2003-08-06include "share.h" for the cookie sharingDaniel Stenberg
2003-08-06make it build without ares supportDaniel Stenberg
make sure it set async false even when using ipv6 (made test case 20 fail before)
2003-08-06more fixDaniel Stenberg
2003-08-06updated the ares instructionDaniel Stenberg
2003-08-05LDFLAGS fix to make the GSSAPI build againDaniel Stenberg
2003-08-05added README.aresDaniel Stenberg
2003-08-05how to build with aresDaniel Stenberg
2003-08-05ares awareness/usage/support added. If configure --enable-ares is used, weDaniel Stenberg
build libcurl to use ares for asynch name resolves.
2003-08-05clean up the dir tree hierarchy in *_done() to make persistant connectionDaniel Stenberg
FTP use the correct directories! Reported in bug report #783116
2003-08-04 Jan Sundin reported a case where curl ignored a cookie that browsers don't,Daniel Stenberg
which turned up to be due to the number of dots in the 'domain'. I've now made curl follow the the original netscape cookie spec less strict on that part.
2003-08-04Dirk Manske's patch that introduces cookie support to the share interface.Daniel Stenberg
2003-08-03 Mark Fletcher provided an excellent bug report that identified a problemDaniel Stenberg
with FOLLOWLOCATION and chunked transfer-encoding, as libcurl would not properly ignore the body contents of 3XX response that included the Location: header.
2003-08-02When proxy authentication is used in a CONNECT request (as used for all SSLDaniel Stenberg
connects and otherwise enforced tunnel-thru-proxy requests), the same authentication header is also wrongly sent to the remote host. The name and password can then be captured by an evil host and possibly get used for malicious purposes.