aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2003-12-19djgpp fixes by Gisle VanemDaniel Stenberg
2003-12-19Gisle Vanem's minor fixesDaniel Stenberg
2003-12-18redirect from a bad url such as "www.com?moo=foo" to an absolute path didn'tDaniel Stenberg
work, as reported by John McGowan
2003-12-18David Byron's fix to make libcurl build fine with both .NET and VC6 versionDaniel Stenberg
of MSVC
2003-12-16use the curlassert() instead of custom checksDaniel Stenberg
2003-12-15added a library-wide interface for doing dns cache pruning, and no longerDaniel Stenberg
make the pruning at each name lookup, only in Curl_done().
2003-12-15if Curl_hash_add() returns NULL, we shall not free the addrinfo field as thatDaniel Stenberg
is made in the hash function in the case of failure (using the already setup 'dtor' function).
2003-12-15make sure that hash_add() has no allocated resources left in case itDaniel Stenberg
returns NULL
2003-12-15Giuseppe Attardi fixed a really tricky bugDaniel Stenberg
2003-12-11use the CORRECT file name! ;-)Daniel Stenberg
2003-12-10Use Curl_transfer() properly. Fixes the bug Gisle Vanem found!Daniel Stenberg
2003-12-10assert that we get a good index to Curl_transfer()Daniel Stenberg
2003-12-10we now have a 'curlassert' function to useDaniel Stenberg
2003-12-10updated with the new configure option usageDaniel Stenberg
2003-12-10added the new amiga files to the distDaniel Stenberg
2003-12-10Diego Casorran's amiga makefilesDaniel Stenberg
2003-12-10native AmigaOS support by Diego CasorranDaniel Stenberg
2003-12-10do the ares stuff in the configure fileDaniel Stenberg
2003-12-08better human error message when a FTP response can't be readDaniel Stenberg
2003-12-04based on Gisle's comment, I removed the use of syslog() and fixed theDaniel Stenberg
netdb.h include, then I re-indented some code to use curl-style
2003-12-03my contentlength adjustment broke the ftp download range stuff, this makesDaniel Stenberg
it work again
2003-12-03Steve Green fixed Curl_resolv()Daniel Stenberg
2003-12-03Ignore content-length when chunked transfer-encoding is transfered.Daniel Stenberg
2003-12-02less complicated code for the MSG_NOSIGNAL detectionDaniel Stenberg
2003-12-02fix compiler warningsDaniel Stenberg
2003-12-02use the HAVE_KRB4 define instead of just KRB4Daniel Stenberg
2003-12-02fixes from Gisle Vanem to try 'AUTH SSL' before 'AUTH TLS', edited by meDaniel Stenberg
2003-12-02If HAVE_MSG_NOSIGNAL is set, we use MSG_NOSIGNAL when we call send() andDaniel Stenberg
recv() and we no longer attempt to ignore the SIGPIPE signal.
2003-12-02Gisle Vanem fixed the check-order for FTPS and FTP.Daniel Stenberg
2003-12-01FTPS now works with active ftp and uploads too.Daniel Stenberg
2003-11-27James Clancy updated the Borland makefilesDaniel Stenberg
2003-11-27Markus Moeller's change to check for HAVE_SPNEGO instead of the previousDaniel Stenberg
2003-11-25When basic is the only auth wanted (which it is by default), the auth phaseDaniel Stenberg
is always considered done immediately as Basic needs to extra passes. This fix corrects bug report #848371.
2003-11-24allow the end-of-headers from a proxy response to CONNECT end with a CRCRDaniel Stenberg
as well as a CRLF
2003-11-24prevent warning for non-SSL buildsDaniel Stenberg
2003-11-24windows build fix based on a patch by Gisle VanemDaniel Stenberg
2003-11-24adjusted code to the new socket fields in the sessionhandle structDaniel Stenberg
2003-11-24FTPS support added as RFC2228 and the murray-ftp-auth-ssl draft describe itDaniel Stenberg
2003-11-24Gaz Iqbal fixed a range string memory leak!Daniel Stenberg
2003-11-24fixed wrong commentDaniel Stenberg
2003-11-20combine the two identical casesDaniel Stenberg
2003-11-20bail out properly on a 407 when we can't authenticate basic, bug reportDaniel Stenberg
#845247
2003-11-19If a partial file has been read or written, force a closure the existingDaniel Stenberg
connection to avoid re-use of it, since we cannot know in what state it is.
2003-11-19respect bits.close even if an error already is set, but make sure that theDaniel Stenberg
existing error is the one returned back
2003-11-15do ares_destroy() on the ares handle when we're done in Curl_is_resolved()Daniel Stenberg
2003-11-15Mathias Axelsson found a case where we free()d the server certificate twice!Daniel Stenberg
2003-11-14Siddhartha Prakash Jain found a case with a bad resolve that we didn'tDaniel Stenberg
properly bail out from, when using ares.
2003-11-13Peter Sylvester found a flaw in the connect code for ipv6-enabled hosts.Daniel Stenberg
I guess it seldomly happens on linux and that's why it wasn't found before. He used Solaris to notice it. I took the opportunity to rewrite the Curl_connecthost() slightly to feature less duplicate code in the two different versions (ipv4/ipv6).
2003-11-13Default Content-Type for formparts has changed to "application/octet-stream".Daniel Stenberg
This seems more appropriate, and I believe mozilla and the likes do this. .html files now get text/html as Content-Type. Pointed out in bug report #839806.
2003-11-13don't log failed socket() callsDaniel Stenberg