aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
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-13CURLFORM_ARRAYSTART and ARRAYEND are now historyDaniel Stenberg
2002-03-13removed some silly CRLF linesDaniel Stenberg
2002-03-114 things since 7.9.5Daniel Stenberg
2002-03-11added test 39, tests the new -F featuresDaniel Stenberg
2002-03-11now -F supports 'filename=blabla' for parts that upload a file, to set theDaniel Stenberg
filename field of that part. A typical example line could look like: -F 'name=@filename;filename=/dev/null' This can be combined with type= too, in a manner similar to: -F "file=@log/test39.txt;filename=fakerfile;type=moo/foobar" Enjoy.
2002-03-11Added support for CURLFORM_FILENAME to set the filename field of a fileDaniel Stenberg
part.
2002-03-11CURLFORM_FILENAME added and some cleanups, HttpPost is now curl_httppostDaniel Stenberg
with a #define to preserve backwards compatibiltiy
2002-03-11corrected the use of the progress functionDaniel Stenberg
2002-03-11minor editDaniel Stenberg
2002-03-113.13 Why does my single/double quotes fail?Daniel Stenberg
2002-03-08completed the progress-bar fixDaniel Stenberg
2002-03-08detect fclose(NULL)Daniel Stenberg
2002-03-08better treatment of the config->errors, only fclose() this if it wasDaniel Stenberg
truly fopen()ed. It could end up fclose()ing a NULL as discovered by Clifford Wolf.
2002-03-08Jean-Philippe Barrette-LaPierre fixed the CURLOPT_PASSWDFUNCTION to makeDaniel Stenberg
NULL set back the internal default function