aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
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.
2003-07-30Jörg Müller-Tolk updated this to build fine with 7.10.6Daniel Stenberg
2003-07-30Daniel Noguerol made the ftp code output "Accept-Ranges: bytes" in similarDaniel Stenberg
style like other faked HTTP headers when NOBODY and HEADER are used.
2003-07-30Reverted the 'filetime' struct field back to a 'long' as time_t is sometimesDaniel Stenberg
unsigned and we want this to be able to hold -1 for illegal/unset values.
2003-07-28clear http->send_buffer when we have freed the memory it pointed toDaniel Stenberg
2003-07-28François Pons brought a patch that once again made curl deal with ftp andDaniel Stenberg
"double slash" as indicating the root directory. In the RFC1738-fix of April 30, that ability was removed (since it is not the "right" way).
2003-07-25having it in CVS causes us problems *grrr*Daniel Stenberg
2003-07-25Andrés García updated with the added files etcDaniel Stenberg
2003-07-25With an unknown CA path, we undef the variable. To build properly withoutDaniel Stenberg
SSL/CA.
2003-07-25Removed #include <sys/resource.h>, as pointed out by Henry Bland we don'tDaniel Stenberg
need it.
2003-07-23When we re-use an existing connection we must make sure that we don'tDaniel Stenberg
accidentally re-use the connect_addr field, as that might no longer be around. Fix verified by Tracy Boehrer who basicly debugged and tracked down this problem.