aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2002-03-27fopen(... "rb") when reading what to post, so that binary posting worksDaniel Stenberg
on Windows!
2002-03-25Jacky Lam cookie parser fix for domains with preceeding dotDaniel Stenberg
2002-03-23Miklos Nemeth's updateDaniel Stenberg
2002-03-22adjusted windows section after a patch from Miklos NemethDaniel Stenberg
2002-03-22patch by Sandro Tolaini to do good (better?) on FreeBSDDaniel Stenberg
2002-03-20no longer include "multi.h", it comes with the regular curl/curl.h nowDaniel Stenberg
2002-03-20crlf replacement on uploads did not work. test case 128 was added just nowDaniel Stenberg
to make sure it remains functional.
2002-03-20verbose FTP PASV output could output a "random" name from the stack basedDaniel Stenberg
array Also, uploading data with --crlf cannot check that the proper size was uploaded and thus should not warn if the sizes differ. This can be changed in the future by having the expected size in the connectdata struct and then increase the expected size for each byte that is added in the --crlf replacement process.
2002-03-20added test 128, ftp upload with --crlfDaniel Stenberg
2002-03-20newcomer notice addedDaniel Stenberg
2002-03-20old list is goneDaniel Stenberg
2002-03-19John Clayton's weird explorations in the wonders of the windows tcp/ipDaniel Stenberg
stack ;-)
2002-03-19made -G set request typeDaniel Stenberg
2002-03-19corrected for 7.9.6Daniel Stenberg
2002-03-19removed multi.hDaniel Stenberg
2002-03-19Added the three multi interface source code examples to the distribDaniel Stenberg
2002-03-19fixed include and added headerDaniel Stenberg
2002-03-19added multi.hDaniel Stenberg
2002-03-19include multi.h tooDaniel Stenberg
2002-03-19moved here from ../../lib/Daniel Stenberg
2002-03-19moved to ../include/curl/Daniel Stenberg
2002-03-19added the multi functions man pagesDaniel Stenberg
2002-03-19multi interface overview and descriptionDaniel Stenberg
2002-03-19removed text that really belongs to very old libcurls that are no longerDaniel Stenberg
being used widely
2002-03-19point out that this describes the easy interface and also make a moreDaniel Stenberg
general statement about language bindings
2002-03-19languageDaniel Stenberg
2002-03-19added some text about PASV and PORT and stuffDaniel Stenberg
2002-03-19copyright string (year) updateDaniel Stenberg
2002-03-19yaketiyakDaniel Stenberg
2002-03-19automake -a for the depcompDaniel Stenberg
2002-03-19made it pass stricter compiler flags with less warningsDaniel Stenberg
2002-03-18test 32, try -d and -GDaniel Stenberg
2002-03-18reverted 1.109, we can't set the request type when -d is used, as -G can beDaniel Stenberg
used and it makes it a GET...
2002-03-18WRITEFUNCTION correctionDaniel Stenberg
2002-03-18Andreas Damm added thanks to his getdate overhaulDaniel Stenberg
2002-03-18gopherDaniel Stenberg
2002-03-18updatedDaniel Stenberg
2002-03-17clarified that it is only the + letter that isn't converted on the rightDaniel Stenberg
side of a ? letter
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-15headers and security blurb addedDaniel 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-14new example for libcurl 7.9.6 or laterDaniel Stenberg
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