aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-04-30modified to work with modified codeDaniel Stenberg
2003-04-30modified to produce nicer output when a single test failsDaniel Stenberg
2003-04-30make the diffs with 'diff -u' to make them nicer and easier to readDaniel Stenberg
2003-04-30stop parsing Host: host names at colons tooDaniel Stenberg
2003-04-30modified to the new cookie function protoDaniel Stenberg
2003-04-30extract host name from custom Host: headers to use for cookiesDaniel Stenberg
2003-04-30Many cookie fixes:Daniel Stenberg
o Save domains in jars like Mozilla does. It means all domains set in Set-Cookie: headers are dot-prefixed. o Save and use the 'tailmatch' field in the Mozilla/Netscape cookie jars (the second column). o Reject cookies using illegal domains in the Set-Cookie: line. Concerns both domains with too few dots or domains that are outside the currently operating server host's domain. o Set the path part by default to the one used in the request, if none was set in the Set-Cookie line.
2003-04-30changes need for the new ftp path treatment and the new cookie codeDaniel Stenberg
2003-04-30David Balazic's patch to make the FTP operations "do right" according toDaniel Stenberg
RFC1738, which means it'll use one CWD for each pathpart.
2003-04-30two more platforms Rich Gray built curl onDaniel Stenberg
2003-04-29 Peter Kovacs provided a patch that makes the CURLINFO_CONNECT_TIME work fineDaniel Stenberg
when using the multi interface (too).
2003-04-29mention configure --helpDaniel Stenberg
2003-04-28CURLOPT_FTPPORT could support port number tooDaniel Stenberg
2003-04-28corrected the comment which wasn't correctDaniel Stenberg
2003-04-25RSAglue.lib is no longer needed with recent OpenSSL versionsDaniel Stenberg
2003-04-24Dan Fandrich added support for the gzip Content-Encoding for --compressedDaniel Stenberg
2003-04-23Bryan Kemp's reported problems with curl and PUT from stdin and a fakedDaniel Stenberg
content-length made me add test case 60, that does exactly this, but it seems to run fine...
2003-04-22last 10 days or soDaniel Stenberg
2003-04-22libtool 1.5 stuffDaniel Stenberg
2003-04-22stop checking for libtool, we don't run that in this scriptDaniel Stenberg
2003-04-22Dan Fandrich corrected the error messages on "bad encoding".Daniel Stenberg
2003-04-22Dan Fandrich's gzip bugfixDaniel Stenberg
2003-04-22Dan Fandrich's fixDaniel Stenberg
2003-04-22 Peter Sylvester pointed out that curl_easy_setopt() will always (wrongly)Daniel Stenberg
return CURLE_OK no matter what happens.
2003-04-16two dashes is enoughDaniel Stenberg
2003-04-15typecast the setting of the size, as it might be an off_t which is biggerDaniel Stenberg
than long and libcurl expects a long...
2003-04-15If MALLOCDEBUG, include the lib's setup.h here so that the proper definesDaniel Stenberg
are set before all system headers, as otherwise we get compiler warnings on my Solaris at least.
2003-04-15include config.h before all system headers, so that _FILE_OFFSET_BITS andDaniel Stenberg
similar is set properly by us first
2003-04-15extended the -F sectionDaniel Stenberg
2003-04-15treat uploaded .html files as text/html by defaultDaniel Stenberg
2003-04-14return the same error for the sslv2 "certificate verify failed" codeDaniel Stenberg
2003-04-14new wording by Kevin RothDaniel Stenberg
2003-04-14ignore all stamp-h*Daniel Stenberg
2003-04-14With the recent fix of libcurl, it shall now return CURLE_SSL_CACERT whenDaniel Stenberg
it had problems withe CA cert and thus we offer a huge blurb of verbose help to explain to the poor user why this happens.
2003-04-14Restored the SSL error codes since they was broken in the 7.10.4 release,Daniel Stenberg
also now attempt to detect and return the specific CACERT error code.
2003-04-14FTP CWD response fixedDaniel Stenberg
gzip content-encoding added chunked content-encoding fixed
2003-04-11clarified the CURLINFO_SIZE_DOWNLOAD somewhat on Juan F. Codagnone'sDaniel Stenberg
suggestion
2003-04-11Nic fixed so that Curl_client_write() must not be called with 0 lenth data.Daniel Stenberg
I edited somewhat and removed trailing whitespaces.
2003-04-11Nic Hines fixed this bug when deflate or gzip contents were downloaded usingDaniel Stenberg
chunked encoding.
2003-04-11ah, move the zero byte too or havoc will occurDaniel Stenberg
2003-04-11verify the new url parser fixDaniel Stenberg
2003-04-11support ? as separator instead of / even if not protocol was givenDaniel Stenberg
2003-04-11these guys deserve a mentioning here as wellDaniel Stenberg
2003-04-11Dan the man on the listDaniel Stenberg
2003-04-11Dan Fandrich's added gzip support documented.Daniel Stenberg
2003-04-11Dan Fandrich's gzip patch appliedDaniel Stenberg
2003-04-11when saving a cookie jar fails, you don't get an error code or anything,Daniel Stenberg
just a warning in the verbose output stream
2003-04-11 According to RFC959, CWD is supposed to return 250 on success, butDaniel Stenberg
there seem to be non-compliant FTP servers out there that return 200, so we accept any '2xy' response now.
2003-04-11show a verbose warning message in case cookie-saving fails, afterDaniel Stenberg
Ralph Mitchell's notification.
2003-04-10new ftp testsDaniel Stenberg