ef0a2c71 | 05-Mar-2004 |
Daniel Stenberg |
clearly tell that these are ftp response timeouts |
2cd64030 | 05-Mar-2004 |
Daniel Stenberg |
Major rewrite of the test HTTP server to allow more fancy features to make better tests with the issue12-patch applied. This change also includes Andr�s Garc�a's win32-fixes. Made the log
Major rewrite of the test HTTP server to allow more fancy features to make better tests with the issue12-patch applied. This change also includes Andr�s Garc�a's win32-fixes. Made the logging look better/more readable in sws.log
show more ...
|
75e1483e | 05-Mar-2004 |
Daniel Stenberg |
'make clean' should only remove the generated html files, index.html is not one of them! |
8a4532ca | 05-Mar-2004 |
Daniel Stenberg |
mention the D binding |
13f98c5c | 05-Mar-2004 |
Daniel Stenberg |
Multiple updates, most of them being proper formatting to create nice html links in the web pages, but also additional facts and removal of old crap. |
30e71d54 | 04-Mar-2004 |
Daniel Stenberg |
issue 12 fix is pending and is working in devel added issue 24 - fix the progress meter for large files on slow networks to not wrap |
465753c2 | 04-Mar-2004 |
Daniel Stenberg |
When following to a new URL, we must make sure to call Curl_done() first, since the current connection must be taken care of properly before we move on. Christopher R. Palmer reported a probl
When following to a new URL, we must make sure to call Curl_done() first, since the current connection must be taken care of properly before we move on. Christopher R. Palmer reported a problem he found due to this mistake.
show more ...
|
e40392ac | 04-Mar-2004 |
Daniel Stenberg |
Andr�s Garc�a's patch to prevent warnings while compiling with mingw, mainly because it is now possible to have both WIN32 and HAVE_CONFIG_H defined. |
1eb9fd6c | 04-Mar-2004 |
Daniel Stenberg |
use size_t for the data, but keep the protos use ssize_t to better fit with the existing transfer.c code |
78e47fbb | 04-Mar-2004 |
Daniel Stenberg |
include the proper header file too |
2b59e90c | 04-Mar-2004 |
Daniel Stenberg |
fix progress data to be updated properly for file: transfers, as reported by Jesse Noller |
59a30e6d | 04-Mar-2004 |
Daniel Stenberg |
prevent harmless compiler warning |
e0287fea | 04-Mar-2004 |
Daniel Stenberg |
David Byron's version resource fix |
4fbf3f16 | 04-Mar-2004 |
Daniel Stenberg |
new "version resource" file for windows builds |
de6433d5 | 03-Mar-2004 |
Daniel Stenberg |
show curl --version output as well |
23ef66f3 | 03-Mar-2004 |
Daniel Stenberg |
largefile bit for the version_info and now winsock 1.1 only |
2479e068 | 03-Mar-2004 |
Daniel Stenberg |
David Byron's work on making libcurl only require winsock 1.1 on Windows machines. |
f2abe03f | 03-Mar-2004 |
Daniel Stenberg |
three days of changes |
5e7f1a0e | 03-Mar-2004 |
Daniel Stenberg |
more variable type cleanups |
eb9383d4 | 03-Mar-2004 |
Daniel Stenberg |
our timeout values are longs while 'tv_sec' is int |
817d1735 | 03-Mar-2004 |
Daniel Stenberg |
make the backup variable of the same kind as the data it backups! ;-) |
88e226c6 | 03-Mar-2004 |
Daniel Stenberg |
some more size_t usage, and two added typecasts when converting from size_t to long (MIPSpro warnings) |
9116dd41 | 03-Mar-2004 |
Daniel Stenberg |
tv_sec is an int, so we explicitly typecast the result of long - long to an int when we assign it. |
213d64fb | 03-Mar-2004 |
Daniel Stenberg |
attempted typecase to silence the MIPSpro warning: cc-1506 cc: REMARK File = ../../curl/ares/ares__read_line.c, Line = 46 There is an implicit conversion from "unsigned long" to "int"; r
attempted typecase to silence the MIPSpro warning: cc-1506 cc: REMARK File = ../../curl/ares/ares__read_line.c, Line = 46 There is an implicit conversion from "unsigned long" to "int"; rounding, sign extension, or loss of accuracy may result. if (!fgets(*buf + offset, *bufsize - offset, fp))
show more ...
|
a8419d68 | 03-Mar-2004 |
Daniel Stenberg |
#ifdef #define #undef circus to prevent compiler warnings on #if operations with undefined variables. |