83b8de3d | 10-Apr-2006 |
Daniel Stenberg |
support --fork and pass that on to sws |
e174d374 | 10-Apr-2006 |
Daniel Stenberg |
Scan for 'stunnel4' before 'stunnel' since debian have them setup this way and it should break most other systems. The "funny" part is that debian actually have a 'stunnel' setup to simulate
Scan for 'stunnel4' before 'stunnel' since debian have them setup this way and it should break most other systems. The "funny" part is that debian actually have a 'stunnel' setup to simulate stunnel v3 but it breaks our own stunnel-version-detect-and-adjust-to-it system. Added initial support for optionally running servers with fork support.
show more ...
|
4edb9350 | 10-Apr-2006 |
Daniel Stenberg |
Use correct content-length. Found out by patching the libcurl read to only read one byte at a time... |
38c994b8 | 10-Apr-2006 |
Daniel Stenberg |
33. Doing multi-pass HTTP authentication on a non-default port does not work. This happens because the multi-pass code abuses the redirect following code for doing multiple requests, and
33. Doing multi-pass HTTP authentication on a non-default port does not work. This happens because the multi-pass code abuses the redirect following code for doing multiple requests, and when we following redirects to an absolute URL we must use the newly specified port and not the one specified in the original URL. A proper fix to this would need to separate the negotiation "redirect" from an actual redirect.
show more ...
|
1b8643d4 | 10-Apr-2006 |
Daniel Stenberg |
65 - curl_multi_socket() added but not extensively tested nor particularly documented or pushed for. |
d3c796f5 | 10-Apr-2006 |
Daniel Stenberg |
we haven't been using yacc/bison in a long time! |
83d8a6a4 | 10-Apr-2006 |
Daniel Stenberg |
forked off the changes from 2005 into its own file |
a21a77d2 | 09-Apr-2006 |
Daniel Stenberg |
CURLE_FTP_USER_PASSWORD_INCORRECT is not returned by libcurl anymore! |
260b88c1 | 09-Apr-2006 |
Daniel Stenberg |
mention RFC 2396 for URL syntax spec |
655331a9 | 09-Apr-2006 |
Daniel Stenberg |
new little example using the new conversion callbacks added in 7.15.4 |
09e569f8 | 08-Apr-2006 |
Daniel Stenberg |
mention the outlength argument |
e4a4b562 | 08-Apr-2006 |
Gisle Vanem |
readint_le() not needed in USE_WINDOWS_SSPI code. |
35b4a755 | 08-Apr-2006 |
Gisle Vanem |
curl_easy_unescape() takes 4 arguments. |
5a4b4384 | 07-Apr-2006 |
Daniel Stenberg |
First commit of David McCreedy's EBCDIC and TPF changes. |
d98869a0 | 07-Apr-2006 |
Daniel Stenberg |
minor re-arrange to return a value in order to avoid compiler warnings for not returning a value from a non-void function (even though the code never actually reached that point before) |
4d33cf73 | 07-Apr-2006 |
Daniel Stenberg |
added typedefed function pointers and typecast the NULL assignments in an attempt to silence picky compilers when assigning data pointers to a function pointer variable |
34e7daf9 | 07-Apr-2006 |
Daniel Stenberg |
attempt to avoid warnings in picky environments by storing options as unsigned chars |
b0adcd6a | 05-Apr-2006 |
Daniel Stenberg |
cut off a bit more of the type-2 ntlm message since it differs between hosts |
be285cde | 05-Apr-2006 |
Daniel Stenberg |
Michele Bini modified the NTLM code to work for his "weird IIS case" (http://curl.haxx.se/mail/lib-2006-02/0154.html) by adding the NTLM hash function in addition to the LM one and making som
Michele Bini modified the NTLM code to work for his "weird IIS case" (http://curl.haxx.se/mail/lib-2006-02/0154.html) by adding the NTLM hash function in addition to the LM one and making some other adjustments in the order the different parts of the data block are sent in the Type-2 reply. Inspiration for this work was taken from the Firefox NTLM implementation. I edited the existing 21(!) NTLM test cases to run fine with these news. Due to the fact that we now properly include the host name in the Type-2 message the test cases now only compare parts of that chunk.
show more ...
|
0ff1faf7 | 28-Mar-2006 |
Daniel Stenberg |
for the CURLDEBUG case, we redefine sprintf and vsprintf to make us notice if any use of such a function slip through |
bcc62cc9 | 28-Mar-2006 |
Daniel Stenberg |
#1451929 (http://curl.haxx.se/bug/view.cgi?id=1451929) detailed a bug that occurred when asking libcurl to follow HTTP redirects and the original URL had more than one question mark (?). Adde
#1451929 (http://curl.haxx.se/bug/view.cgi?id=1451929) detailed a bug that occurred when asking libcurl to follow HTTP redirects and the original URL had more than one question mark (?). Added test case 276 to verify.
show more ...
|
97b466d4 | 28-Mar-2006 |
Daniel Stenberg |
converted sprintf() to snprintf() to reduce risk |
f17d9bba | 27-Mar-2006 |
Daniel Stenberg |
David Byron found a problem multiple -d options when libcurl was built with --enable-debug, as then curl used free() on memory allocated both with normal malloc() and with libcurl-provided fu
David Byron found a problem multiple -d options when libcurl was built with --enable-debug, as then curl used free() on memory allocated both with normal malloc() and with libcurl-provided functions, when the latter MUST be freed with curl_free() in debug builds.
show more ...
|
d74725ce | 27-Mar-2006 |
Gunter Knauf |
minor Makefile fix - let's go 2006; avoid kiling hugehelp.c when not built from CVS. |
3dad55d7 | 26-Mar-2006 |
Daniel Stenberg |
Tor Arntsen figured out that TFTP was broken on a lot of systems since we called bind() with a too big argument in the 3rd parameter and at least Tru64, AIX and IRIX seem to be very picky abo
Tor Arntsen figured out that TFTP was broken on a lot of systems since we called bind() with a too big argument in the 3rd parameter and at least Tru64, AIX and IRIX seem to be very picky about it.
show more ...
|