aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2004-12-01make the "check" actually open all those file desciptors as well to make sureDaniel Stenberg
it works, as it has proved to not work in some cases (like on Tor Arntsen's AIX 5100-06 xlc 5.0 --disable-shared runs).
2004-11-30alarm() works unreliable on djgpp 2.03. Don't use it.Gisle Vanem
2004-11-30recent changesDaniel Stenberg
2004-11-30fixed test case errorsDaniel Stenberg
2004-11-30three new compress test casesDaniel Stenberg
2004-11-30Fixed the array comparison function even more, made the temporary files usedDaniel Stenberg
for diff output get created in the log/ dir and no longer deletes them since they help in understanding the problem, fixing the test case and fixing curl problems.
2004-11-30Dan Fandrich's fix for libz 1.1 and "extra field" usage in a gzip streamDaniel Stenberg
2004-11-30no longer use the MIME::Base64.pm package as it seems to not be standardDaniel Stenberg
on lots of perl versions, provide our own base64 decoder
2004-11-29added test 221 to test a broken gzip content downloadDaniel Stenberg
2004-11-29added test 220 - simple gzip auto decompressDaniel Stenberg
2004-11-29--disable-epsv when connecting to an IPv6 ftp serverDaniel Stenberg
2004-11-29removed commentDaniel Stenberg
2004-11-29include setup.h firstDaniel Stenberg
2004-11-29As reported in Mandrake's bug tracker bug 12285Daniel Stenberg
(http://qa.mandrakesoft.com/show_bug.cgi?id=12285), when connecting to an IPv6 host with FTP, --disable-epsv (or --disable-eprt) effectively disables the ability to transfer a file. Now, when connected to an FTP server with IPv6, these FTP commands can't be disabled even if asked to with the available libcurl options.
2004-11-29zero terminate the buffer spitout() returns, as the sws.c code depends onDaniel Stenberg
that!
2004-11-29make it possible for a test case to depend on the feature 'libz'Daniel Stenberg
2004-11-29killed trailing whitespaceDaniel Stenberg
2004-11-29Enable test cases to provide sections base64-encoded to be able to testDaniel Stenberg
with binary data.
2004-11-29utility to base encode data passed on stdinDaniel Stenberg
2004-11-29stricter newline policyDaniel Stenberg
2004-11-29spellDaniel Stenberg
2004-11-29if gmtime() returns NULL, this returns -1 to bail out nicelyDaniel Stenberg
2004-11-28removed one we won't do, removed the CWD optimize as it is (partly) doneDaniel Stenberg
2004-11-28add more info to the stderr outputDaniel Stenberg
2004-11-27typecast the coversion from long to intDaniel Stenberg
2004-11-26progress meter newlineDaniel Stenberg
2004-11-26I changed my mind. Remove ioctl() macro in setup.h instead.Gisle Vanem
2004-11-26Added anyauthput.exe.Gisle Vanem
2004-11-26Renamed urldata.h members 'ioctl*' to 'ioctrl*' due toGisle Vanem
clash with djgpp ioctl() macro in setup.h.
2004-11-26As reported in Mandrake's bug tracker bug 12289Daniel Stenberg
(http://qa.mandrakesoft.com/show_bug.cgi?id=12289), curl would print a newline to "finish" the progress meter after each redirect and not only after a completed transfer.
2004-11-26removed no longer used variableDaniel Stenberg
2004-11-26last-second-before-commit changes correctedDaniel Stenberg
2004-11-25FTP improvements:Daniel Stenberg
If EPSV, EPRT or LPRT is tried and doesn't work, it will not be retried on the same server again even if a following request is made using a persistent connection. If a second request is made to a server, requesting a file from the same directory as the previous request operated on, libcurl will no longer make that long series of CWD commands just to end up on the same spot. Note that this is only for *exactly* the same dir. There is still room for improvements to optimize the CWD-sending when the dirs are only slightly different. Added test 210, 211 and 212 to verify these changes. Had to improve the test script too and added a new primitive to the test file format.
2004-11-25made the code fit within 80 colsDaniel Stenberg
2004-11-24mingw _has_ a ftruncate() but it doesn't work with 64bit file sizes so weDaniel Stenberg
can just safely pretend we don't have one
2004-11-24Provide a 64-bit capable ftruncate(). MingW has one, butGisle Vanem
it takes only 32-bit offsets.
2004-11-24added missing new error stringDaniel Stenberg
2004-11-24mingw has a ftruncate() functionDaniel Stenberg
2004-11-24HTTP "auth done right". See lib/README.httpauthDaniel Stenberg
2004-11-24decided to skip the MSVC makefile fixes, nobody seems to really want themDaniel Stenberg
and they are rather excessive
2004-11-24Andrés García fixed the configure script to detect select properly when runDaniel Stenberg
with Msys/Mingw on Windows.
2004-11-24Clarify the static vs. import lib issue on Win32.Gisle Vanem
2004-11-23added a bunch of people who really deserve to be hereDaniel Stenberg
2004-11-23oops, use the precheck too!Daniel Stenberg
2004-11-23cut out release with no issue to fixDaniel Stenberg
2004-11-23introducing the client/precheck concept to allow test 518 to *only* run whenDaniel Stenberg
it actually can run and test the FD_SETSIZE stuff it is meant to test
2004-11-23yet another bindingDaniel Stenberg
2004-11-22David Phillips fix for test 518 and my extension to make it not run onDaniel Stenberg
systems that can't run it fine.
2004-11-22trying a version with URLs for all function callsDaniel Stenberg
2004-11-22issue 52 is fixed, I work on 51Daniel Stenberg