aboutsummaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2002-03-19removed multi.hDaniel Stenberg
2002-03-19moved to ../include/curl/Daniel Stenberg
2002-03-19copyright string (year) updateDaniel Stenberg
2002-03-19made it pass stricter compiler flags with less warningsDaniel Stenberg
2002-03-16verbose PASV transfers passed a bad buffer size to the name resolver functionsDaniel Stenberg
and it cause cause a crash. Albert Choy found and fixed it.
2002-03-15corrected SSL buildsDaniel Stenberg
2002-03-15make sure we return CURLE_WRITE_ERROR if the write callback returnedDaniel Stenberg
an error, even if we were decoding a chunked-encoded transfer
2002-03-15Jun-ichiro itojun Hagino <itojun@itojun.org>:Daniel Stenberg
Now first check if IPv6 is supported, then use PF_UNSPEC. If not, use PF_INET. It'll solve both the "slow name lookup" problem on IPv4 and still work fine on IPv6 hosts. Bug report #530204 has more details: http://sourceforge.net/tracker/?func=detail&atid=100976&aid=530204&group_id=976
2002-03-15bug report #530204 correctly identified that revision 1.52 broke ipv6Daniel Stenberg
functionality and this change reverts this. However, with this revert we bring back problems on (some/all?) non-IPv6 enabled Linux machines that have getaddrinfo().
2002-03-14if CURLOPT_POSTFIELDS isn't set, but CURLOPT_POST is, we will assume thatDaniel Stenberg
we should read the POST-data from the read callback
2002-03-142002Daniel Stenberg
2002-03-14CURLOPT_POST deserved a new comment with the new POST-by-callback supportDaniel Stenberg
2002-03-13no longer attempts to SIZE a NULL pointer, as that wasn't very cleverDaniel Stenberg
(but didn't crash or anything)
2002-03-13Setting CURLOPT_PASSWDFUNCTION to NULL now restores the internal function.Daniel Stenberg
2002-03-13sendf() now deals with Curl_write() returning -1 properly, which it mightDaniel Stenberg
do if the write would've blocked
2002-03-13now supports all options in arrays, except the CURLFORM_ARRAY itselfDaniel Stenberg
2002-03-11Added support for CURLFORM_FILENAME to set the filename field of a fileDaniel Stenberg
part.
2002-03-08detect fclose(NULL)Daniel Stenberg
2002-03-08Jean-Philippe Barrette-LaPierre fixed the CURLOPT_PASSWDFUNCTION to makeDaniel Stenberg
NULL set back the internal default function
2002-03-06Brad corrected the include path (again)Daniel Stenberg
2002-02-28Wesley Laxton's CURLOPT_PREQUOTE workDaniel Stenberg
2002-02-28Ralph Mitchell's SSL problems made me notice that we didn't increase theDaniel Stenberg
header byte counter properly
2002-02-28more fancy alloc, we store the size in each allocated block so that weDaniel Stenberg
can destroy the full allocated area just before we free it
2002-02-28always allocates at least 64 bytes for real, and damages them before freeDaniel Stenberg
2002-02-27made building outside the source tree work again, Kevin Roth reportedDaniel Stenberg
2002-02-27made Max-Age work as defined in the RFC.Daniel Stenberg
my brain damaged fix to not parse spaces as part of the value is now fixed to instead strip off trailing spaces from values.
2002-02-26When saving a cookie jar, set field 1 (counted from 0) properly to TRUE if theDaniel Stenberg
domain starts with a dot.
2002-02-26removed crash on weird input, this also better discards silly inputDaniel Stenberg
2002-02-25automake usage and options cleanupDaniel Stenberg
2002-02-25oops, #if not #ifdefDaniel Stenberg
2002-02-25cygnus can't include winsock.h even though it has it, why we need toDaniel Stenberg
make a different and more complicated check for when to include it
2002-02-22better time selection for the connect timeoutDaniel Stenberg
2002-02-22lib/config.h.in added to distDaniel Stenberg
2002-02-20Nico Baggus' VMS tweaksDaniel Stenberg
2002-02-20Andrés García solved bug report #515228 by making sure the progress meterDaniel Stenberg
is updated even if everything is read in one single pass, as the windows functions apparantly does more often than other systems.
2002-02-19corrected reference to multi-using examplesDaniel Stenberg
2002-02-19include winsock.h on window boxen to work smoother thereDaniel Stenberg
2002-02-18fixed a long long mistakeDaniel Stenberg
2002-02-18Rick Richardson's getaddrinfo() usage fix to speed up name resolvesDaniel Stenberg
2002-02-18INADDR_NONE should be in_addr_t to work with 64bit archs better.Daniel Stenberg
Really, we should only #define this in one file, not both here and in connect.c!
2002-02-18Philip Gladstone's size problem in add_buffer_send()Daniel Stenberg
2002-02-18connection timeout comparison fix by EmilDaniel Stenberg
2002-02-17Philip Gladstone's 64-bit issues corrected.Daniel Stenberg
Reminder for the future: when we're using malloc() we MUST include <stdlib.h> as otherwise 64bit archs go bananas. Bug report #517687
2002-02-17corrected the Expect: ignore, made Content-Type: possible to skipDaniel Stenberg
2002-02-17Giaslas Georgios's Host: over proxy fixDaniel Stenberg
2002-02-07ugh. the VMS stuff must've been like that for a reason, I put it back againDaniel Stenberg
2002-02-07moved the config-* files here from the ../Makefile.amDaniel Stenberg
2002-02-07use the config files in this directory now, not ../Daniel Stenberg
2002-02-07moved the config-*.h files from root to the lib/ dirDaniel Stenberg
2002-02-07don't add 2 to the post size, that was a previous mistake because thereDaniel Stenberg
was an extra CRLF added to the post data