85baebd0 | 17-Feb-2005 |
Daniel Stenberg |
mention filename= for the -F |
ac022b2e | 16-Feb-2005 |
Daniel Stenberg |
Christopher R. Palmer reported a problem with HTTP-POSTing using "anyauth" that picks NTLM. Thanks to David Byron letting me test NTLM against his servers, I could quickly repeat and fix the
Christopher R. Palmer reported a problem with HTTP-POSTing using "anyauth" that picks NTLM. Thanks to David Byron letting me test NTLM against his servers, I could quickly repeat and fix the problem. It turned out to be: When libcurl POSTs without knowing/using an authentication and it gets back a list of types from which it picks NTLM, it needs to either continue sending its data if it keeps the connection alive, or not send the data but close the connection. Then do the first step in the NTLM auth. libcurl didn't send the data nor close the connection but simply read the response-body and then sent the first negotiation step. Which then failed miserably of course. The fixed version forces a connection if there is more than 2000 bytes left to send.
show more ...
|
f169b750 | 14-Feb-2005 |
Daniel Stenberg |
check for ENGINE_load_builtin_engines() as well if engine is around |
86295eef | 14-Feb-2005 |
Marty Kuhrt |
changed config-vms info |
32d60b27 | 14-Feb-2005 |
Marty Kuhrt |
changed curlmsg.* entries to see if CVS would ignore it now |
0a3065a2 | 14-Feb-2005 |
Daniel Stenberg |
Rename Curl_pretransfersec() to *_second_connect() since it does not just do pretransfer stuff like Curl_pretransfer(). |
b98faaa8 | 11-Feb-2005 |
Daniel Stenberg |
Fixed bad krb4 code. It always tried to use krb4 if built enabled. |
73772323 | 11-Feb-2005 |
Marty Kuhrt |
rename amigaos.c and nwlib.c if they exist before building |
98389066 | 11-Feb-2005 |
Daniel Stenberg |
Removed per Marty's request: The .h_* files aren't needed anymore, I consolidated them into one file called config-vms.h. The curlmsg.h and .sdl files are generated from the curlmsg.msg file
Removed per Marty's request: The .h_* files aren't needed anymore, I consolidated them into one file called config-vms.h. The curlmsg.h and .sdl files are generated from the curlmsg.msg file and, thus, shouldn't be in the dist.
show more ...
|
fb53ed4c | 11-Feb-2005 |
Marty Kuhrt |
re-sync'd with curlmsg.msg |
e719eb5b | 11-Feb-2005 |
Marty Kuhrt |
ignore curlmsg.h and .sdl as they are generated by curlmsg.msg |
3858063b | 11-Feb-2005 |
Marty Kuhrt |
sync'd error codes with include/curl.h |
d4f5fea8 | 11-Feb-2005 |
Marty Kuhrt |
Added $Id$ and pre-exisiting logical check |
22c1d48c | 11-Feb-2005 |
Daniel Stenberg |
remove the check for strftime(), we don't need it |
e7cefd68 | 11-Feb-2005 |
Daniel Stenberg |
Removed all uses of strftime() since it uses the localised version of the week day names and month names and servers don't like that. |
d2485e4f | 10-Feb-2005 |
Daniel Stenberg |
valgrind stuff for test suite, vms build and more |
160d6b26 | 10-Feb-2005 |
Daniel Stenberg |
Moved out the valgrind report parser to valgrind.pm, to make it easier to test it outside the test suite. Now we also disable valgrind usage if libcurl was built shared, as then valgrind is o
Moved out the valgrind report parser to valgrind.pm, to make it easier to test it outside the test suite. Now we also disable valgrind usage if libcurl was built shared, as then valgrind is only testing the wrapper-script running shell which is pointless.
show more ...
|
17d61e4f | 10-Feb-2005 |
Daniel Stenberg |
typecast assign to ftpport from int to prevent warnings |
446b9467 | 10-Feb-2005 |
Daniel Stenberg |
init fix for non-SSL builds |
3970a705 | 10-Feb-2005 |
Marty Kuhrt |
Reduced the two config-vms.h_* files into this one. |
74068a6d | 09-Feb-2005 |
Daniel Stenberg |
David Byron fixed his SSL problems, initially mentioned here: http://curl.haxx.se/mail/lib-2005-01/0240.html. It turned out we didn't use SSL_pending() as we should. This was TODO-RE
David Byron fixed his SSL problems, initially mentioned here: http://curl.haxx.se/mail/lib-2005-01/0240.html. It turned out we didn't use SSL_pending() as we should. This was TODO-RELEASE issue #59.
show more ...
|
8c83422f | 09-Feb-2005 |
Daniel Stenberg |
David Byron identified the lack of SSL_pending() use, and this is my take at fixing this issue. |
61a1e3cd | 09-Feb-2005 |
Daniel Stenberg |
better error checking and SSL init by David Byron |
89cac6f2 | 09-Feb-2005 |
Daniel Stenberg |
prevent a compiler warning |
62082293 | 09-Feb-2005 |
Gisle Vanem |
Some functions are static here, but extern in libxml's SAX.h. gcc doesn't like that. Rename. |