708ed6fd | 08-May-2005 |
Daniel Stenberg |
silence compiler warnings |
5c30fa50 | 07-May-2005 |
Daniel Stenberg |
fix warnings about unused variables for non-debug builds |
fc33c424 | 07-May-2005 |
Daniel Stenberg |
fix |
b04d6dd0 | 07-May-2005 |
Daniel Stenberg |
January 2003. Started working on the distributed curl tests. The autobuilds. |
9c5f79c5 | 07-May-2005 |
Daniel Stenberg |
DEBUGF() is a new conveniant macro to add infof() calls (or similar) for debug builds only. Made the ftp code use it on several places. |
ef5eea68 | 07-May-2005 |
Daniel Stenberg |
Added an active disconnected state, to make the code clearer. |
fd191deb | 07-May-2005 |
Daniel Stenberg |
removed unnecessary logging to ease REAL debuggin |
e1da1ff7 | 06-May-2005 |
Daniel Stenberg |
one more command line option, fixed the AIX 4.3 enabled IPv6 build (it now detects a bad Ipv6 situation and disables it automatically) |
2b00ed7e | 06-May-2005 |
Daniel Stenberg |
Added two test cases for multipart formpost over a proxy with --anyauth. Our HTTP test server is a bit limited though, as it never responds to the POST request until all data has been sent (a
Added two test cases for multipart formpost over a proxy with --anyauth. Our HTTP test server is a bit limited though, as it never responds to the POST request until all data has been sent (and received)...
show more ...
|
d960ea95 | 06-May-2005 |
Daniel Stenberg |
When a server is clearly running, curl is now invoked to verify that it can download a file from the server before the server is considered fine to use for the given test case. This should fi
When a server is clearly running, curl is now invoked to verify that it can download a file from the server before the server is considered fine to use for the given test case. This should fix the cases where the server can run but curl cannot work with it.
show more ...
|
274842ec | 05-May-2005 |
Daniel Stenberg |
use calloc instead of malloc to save a call to memset() |
c06da7c8 | 04-May-2005 |
Daniel Stenberg |
now add --trace-time by default for curl tests |
cea117b5 | 04-May-2005 |
Daniel Stenberg |
removed lots of (now) redundant logging |
6078c938 | 04-May-2005 |
Daniel Stenberg |
modify a value we are allowed to |
9e95dd48 | 04-May-2005 |
Daniel Stenberg |
improved logging (all FTP protocol data, both ways) to possibly help us realize why sometimes the control connection dies after a RETR has been sent |
0cc8b57d | 04-May-2005 |
Daniel Stenberg |
towards 7.14.0 - really |
2179e6e7 | 04-May-2005 |
Daniel Stenberg |
prevent memory leak when built SSL disabled |
7dde3d18 | 03-May-2005 |
Daniel Stenberg |
*MAN* was this hard to track down. Had I just read the docs properly from the start... Anyway, fork() + exec() makes _two_ pids (in perl) that we need to track and kill after use. Thankyouver
*MAN* was this hard to track down. Had I just read the docs properly from the start... Anyway, fork() + exec() makes _two_ pids (in perl) that we need to track and kill after use. Thankyouverymuch.
show more ...
|
a0fe950b | 03-May-2005 |
Daniel Stenberg |
add more info to the log to ease debugging |
44985e88 | 02-May-2005 |
Daniel Stenberg |
improved failf() error messages |
f03366bc | 02-May-2005 |
Daniel Stenberg |
the new functions and the upcoming ipv6 calls for the next version to become 1.3.0 |
d43ea830 | 02-May-2005 |
Daniel Stenberg |
corrected copyright years |
11bdba00 | 02-May-2005 |
Daniel Stenberg |
corrected copyright year |
07e58aaa | 02-May-2005 |
Daniel Stenberg |
Sort of "fixed" KNOWN_BUGS #4: curl now builds IPv6 enabled on AIX 4.3. At least it should no longer cause a compiler error. However, it does not have AI_NUMERICHOST so we cannot getaddrinfo(
Sort of "fixed" KNOWN_BUGS #4: curl now builds IPv6 enabled on AIX 4.3. At least it should no longer cause a compiler error. However, it does not have AI_NUMERICHOST so we cannot getaddrinfo() any numerical addresses with it (we use that for FTP PORT/EPRT)! So, I modified the configure check that checks if the getaddrinfo() is working, to use AI_NUMERICHOST since then it'll fail on AIX 4.3 and it will automatically build with IPv6 support disabled.
show more ...
|
a31ddd36 | 02-May-2005 |
Daniel Stenberg |
Now configure checks for struct sockaddr_storage and the ftp code tries to survive without it if not found. AIX 4.3 targetted adjustment. |