2ed524f0 | 23-Jun-2004 |
Daniel Stenberg |
When adding the return -1 to prevent warnings on some compilers, others started complaining since it won't be reached... So I removed the call to abort() and just return -1 instead. abort() w
When adding the return -1 to prevent warnings on some compilers, others started complaining since it won't be reached... So I removed the call to abort() and just return -1 instead. abort() was wrong to call anyway since this is a library!
show more ...
|
5f1eefd0 | 23-Jun-2004 |
Daniel Stenberg |
prevent a warning |
522b4d75 | 22-Jun-2004 |
Gunter Knauf |
one copy&paste too much, removed the define again. |
d6dcb084 | 22-Jun-2004 |
Gunter Knauf |
argh - copy&paste error. |
806c756a | 22-Jun-2004 |
Gunter Knauf |
syncronized with recent getdate.y updates. |
24947013 | 22-Jun-2004 |
Daniel Stenberg |
the hostname variable wasn't assigned and we no longer use it |
1c10272e | 22-Jun-2004 |
Daniel Stenberg |
cookie size |
0badcf38 | 22-Jun-2004 |
Daniel Stenberg |
extended to include a cookie with 4998 bytes of content |
35558e6b | 22-Jun-2004 |
Daniel Stenberg |
David Cohen pointed out that RFC2109 says clients should allow cookies to contain least 4096 bytes while libcurl only allowed 2047. I raised the limit to 4999 now and made the used buffer get
David Cohen pointed out that RFC2109 says clients should allow cookies to contain least 4096 bytes while libcurl only allowed 2047. I raised the limit to 4999 now and made the used buffer get malloc()ed instead of simply allocated on stack as before.
show more ...
|
7659747e | 22-Jun-2004 |
Daniel Stenberg |
G�nter Knauf fixed getdate.y to remove a few warnings. I removed the ifdef'ed test we never ever use anyway. |
53189fb2 | 22-Jun-2004 |
Gunter Knauf |
added new --target option for autobuilding other targets than GNU-like. |
450c178d | 22-Jun-2004 |
Gunter Knauf |
added 'clean' targets for mingw32 and netware. |
a20eb6df | 22-Jun-2004 |
Daniel Stenberg |
reset CURLOPT_HTTPHEADER with NULL |
d7342506 | 22-Jun-2004 |
Daniel Stenberg |
Moved the "About to connect() to" text to the place where the host name is actually known, as before this text lied when used in i.e FTP. |
0051d5ac | 22-Jun-2004 |
Daniel Stenberg |
Gisle Vanem improved the certificate wildcard checks |
76920413 | 22-Jun-2004 |
Daniel Stenberg |
Gisle fixed the wildcard checks for certificates. |
44d9a8ba | 22-Jun-2004 |
Daniel Stenberg |
Gunter's fix to avoid the notorious YYSTACK_USE_ALLOCA warning we get on several platforms/compilers/yacc versions. |
38dc548a | 22-Jun-2004 |
Daniel Stenberg |
retry to read the sent request a few times if it doesn't exist the first time |
dca63862 | 22-Jun-2004 |
Daniel Stenberg |
pass an int pointer when it expects an int pointer... |
2a701a1a | 22-Jun-2004 |
Daniel Stenberg |
modified some logging output |
0cb297ab | 21-Jun-2004 |
Daniel Stenberg |
testcurl.sh is dead, long live tests/testcurl.pl! |
821a2353 | 21-Jun-2004 |
Daniel Stenberg |
This is the old script for testing curl, now use tests/testcurl.pl instead. It is more portable. |
bc805991 | 21-Jun-2004 |
Daniel Stenberg |
read callback return code and fixed the pycurl url |
941374b5 | 21-Jun-2004 |
Daniel Stenberg |
CURL_READFUNC_ABORT stuff |
1886893d | 21-Jun-2004 |
Daniel Stenberg |
Added blurb for the READFUNCTION, including the new CURL_READFUNC_ABORT return code. |