Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-01-16 | - Armel Asselin improved libcurl to behave a lot better when an easy handle | Daniel Stenberg | |
doing an FTP transfer is removed from a multi handle before completion. The fix also fixed the "alive counter" to be correct on "premature removal" for all protocols. | |||
2006-10-18 | use the return code from lseek() to detect problems and bail out if so | Daniel Stenberg | |
2006-10-11 | Remove redundant __CYGWIN__ symbol check | Yang Tse | |
2006-09-07 | Major overhaul introducing http pipelining support and shared connection | Daniel Stenberg | |
cache within the multi handle. | |||
2006-09-03 | Simplified #ifdef on WIN32; the statement | Gisle Vanem | |
" !defined(__GNUC__) || defined(__MINGW32__)" implies CygWin. | |||
2006-08-30 | Removed "#ifndef__WATCOMC__". Use "#ifdef HAVE_SYS_TIME_H" instead. | Gisle Vanem | |
2006-08-29 | Watcom lacks <sys/time.h>. | Gisle Vanem | |
2006-08-19 | Based on a patch by Armel Asselin, the FTP code no longer re-issues the TYPE | Daniel Stenberg | |
command on subsequent requests on a re-used connection unless it has to. | |||
2006-05-04 | Roland Blom filed bug report #1481217 | Daniel Stenberg | |
(http://curl.haxx.se/bug/view.cgi?id=1481217), with follow-ups by Michele Bini and David Byron. libcurl previously wrongly used GetLastError() on windows to get error details after socket-related function calls, when it really should use WSAGetLastError() instead. When changing to this, the former function Curl_ourerrno() is now instead called Curl_sockerrno() as it is necessary to only use it to get errno from socket-related functions as otherwise it won't work as intended on Windows. | |||
2006-04-07 | First commit of David McCreedy's EBCDIC and TPF changes. | Daniel Stenberg | |
2005-12-30 | fix questionable compare compiler error (unsigned can't be < 0) | Marty Kuhrt | |
2005-12-30 | putting back into dist | Marty Kuhrt | |
2005-12-01 | Jamie Newton pointed out that libcurl's file:// code would close() a zero | Daniel Stenberg | |
file descriptor if given a non-existing file. | |||
2005-02-11 | Removed all uses of strftime() since it uses the localised version of the | Daniel Stenberg | |
week day names and month names and servers don't like that. | |||
2005-02-09 | FTP code turned into state machine. Not completely yet, but a good start. | Daniel Stenberg | |
The tag 'before_ftp_statemachine' was set just before this commit in case of future need. | |||
2004-12-16 | moved the lseek() and stat() magic defines to setup.h and now take advantage | Daniel Stenberg | |
of struct_stat in formdata.c as well, to support formpost uploads of large files on Windows too | |||
2004-12-13 | Gisle's fix for resuming large file:// files on windows - slightly edited | Daniel Stenberg | |
by me. | |||
2004-12-11 | provide an error string when resuming fails - and use the proper error code, | Daniel Stenberg | |
not the former one | |||
2004-11-09 | Handle drive-letter on MS-DOS. | Gisle Vanem | |
2004-11-02 | Paul Nolan fix to make libcurl build nicely on Windows CE | Daniel Stenberg | |
2004-10-06 | removed tabs and trailing whitespace from source | Daniel Stenberg | |
2004-08-17 | Kjetil Jacobsen reported an open file leak in file:// transfers of empty | Daniel Stenberg | |
files. | |||
2004-07-06 | Andres Garcia pointed out that we searched for a slash badly since it is | Daniel Stenberg | |
converted and thus we must search for backslash on windows | |||
2004-06-24 | fix warning | Daniel Stenberg | |
2004-06-24 | Replaced all uses of sprintf() with the safer snprintf(). It is just a | Daniel Stenberg | |
precaution to prevent mistakes to lead to buffer overflows. | |||
2004-06-21 | The read callback can now return CURL_READFUNC_ABORT to stop a transfer. | Daniel Stenberg | |
2004-06-10 | Steven Bazyl and Seshubabu Pasam pointed out a bug on win32 when freeing the | Daniel Stenberg | |
path after a transfer. | |||
2004-05-25 | initial support for "uploading" to file:// URLs | Daniel Stenberg | |
2004-05-13 | better bailing out in case of no memory | Daniel Stenberg | |
2004-05-11 | curl_global_init_mem() allows the memory functions to be replaced. | Daniel Stenberg | |
memory.h is included everywhere for this. | |||
2004-04-26 | added comments | Daniel Stenberg | |
2004-04-06 | New authentication code added, particularly noticable when doing POST or PUT | Daniel Stenberg | |
with Digest or NTLM. libcurl will now use HEAD to negotiate the authentication and when done perform the requested POST. | |||
2004-03-10 | Use more curl_off_t variables when doing the progress meter calculations and | Daniel Stenberg | |
argument passing and try to convert to double only when providing data to the external world. | |||
2004-03-05 | another include to prevent warnings | Daniel Stenberg | |
2004-03-05 | more fixing to make the progress/getinfo stuff to work properly when doing | Daniel Stenberg | |
file: transfers too | |||
2004-03-04 | include the proper header file too | Daniel Stenberg | |
2004-03-04 | fix progress data to be updated properly for file: transfers, as reported | Daniel Stenberg | |
by Jesse Noller | |||
2004-03-03 | rename struct FILE to FILEPROTO, to prevent it from causing trouble with | Daniel Stenberg | |
the plain old FILE typedef. | |||
2004-03-02 | Yet another curl_off_t printf format attempt, we now exclude the %-letter from | Daniel Stenberg | |
FORMAT_OFF_T to allow additional options to get specified, like with '"%5" FORMAT_OFF_T'. | |||
2004-03-02 | use FORMAT_OFF_T instead of CURL_FORMAT_OFF_T to reduce the complexity of | Daniel Stenberg | |
having to redef that name | |||
2004-03-01 | Use CURL_FORMAT_OFF_T for printf()inf curl_off_t variables. | Daniel Stenberg | |
2004-02-13 | the now and start variables were never really used | Daniel Stenberg | |
2004-02-13 | I made the same fix here, that Tor already did in the ftp.c code. To make | Daniel Stenberg | |
sure this doesn't get weird on 64bit archs. | |||
2004-01-29 | Dan Fandrich's cleanup patch to make pedantic compiler options cause less | Daniel Stenberg | |
warnings. Minor edits by me. | |||
2004-01-22 | attempt to fix 64bit seeking for Windows, does it work? | Daniel Stenberg | |
2004-01-22 | use curl_off_t instead of off_t! | Daniel Stenberg | |
2004-01-07 | updated year in the copyright string | Daniel Stenberg | |
2004-01-05 | David J Meyer's large file support. | Daniel Stenberg | |
2003-10-30 | silly me, I was meaning to do this change already as discussed on the libcurl | Daniel Stenberg | |
list, we get the time in GMT and not localtime | |||
2003-10-30 | curl --head now reports info "headers" on file:// URLs as well | Daniel Stenberg | |