aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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
2004-11-22removed trailing whitespaceDaniel Stenberg
2004-11-22removed unused variable and trailing whitespaceDaniel Stenberg
2004-11-22remove curl_ prefix from functions not present in libcurlDaniel Stenberg
2004-11-22re-indented to curl styleDaniel Stenberg
2004-11-22renamed curl_thread to my_thread to avoid confusionDaniel Stenberg
2004-11-22add URLs in comments for all libcurl function callsDaniel Stenberg
2004-11-22Curl_select's timeout arg is an intDaniel Stenberg
2004-11-21the FD_SETSIZE problem is fixedDaniel Stenberg
2004-11-21The FD_SETSIZE issue is already sorted, at least internally. We still needDaniel Stenberg
to provide a better multi-API to allow apps to avoid select().
2004-11-21added comment for windows people about READFUNCTION being neededDaniel Stenberg
2004-11-20Dan Fandrich fix to compile with libc5Daniel Stenberg
2004-11-19Enable >2GB files for MingW.Gisle Vanem
2004-11-19Suppress signed vs. unsigned warnings on Win32Gisle Vanem
2004-11-19Curl_select() now uses curl_socket_t on socket argumentsDaniel Stenberg
2004-11-19ifdef for portable "/dev/null".Gisle Vanem
2004-11-19Winsock sockets are not in range 0..FD_SETSIZE.Gisle Vanem
Shouldn't Curl_select() use curl_socket_t ?
2004-11-19add select.objDaniel Stenberg
2004-11-19David Phillips' FD_SETSIZE fixDaniel Stenberg
2004-11-18Dan Fandrich fix: eliminates some pedantic CodeWarrior compiler warnings andDaniel Stenberg
errors.
2004-11-16Added revision tag.Gisle Vanem
2004-11-16Added README.httpauth to the distDaniel Stenberg
2004-11-16saved for the futureDaniel Stenberg
2004-11-16mention the openssl callbacks for SSL multithreadDaniel Stenberg
2004-11-15added test case 517: 22 tests of the curl_getdate() functionDaniel Stenberg
2004-11-15tiny format fix for nicer man outputDaniel Stenberg
2004-11-15clean up start time and t_startsingle use so that redirect_time works properlyDaniel Stenberg
2004-11-15new -w variables supportedDaniel Stenberg
2004-11-15Added top_srcdir.Gisle Vanem