- Aug 29, 2008
-
-
Dan Fandrich authored
to HTTP 1.0 upon receiving a response from the HTTP server. Tests 1072 and 1073 are similar to test 1069 in that they involve the impossible scenario of sending chunked data to a HTTP 1.0 server. All these currently fail and are added to DISABLED. Added test 1075 to test --anyauth with Basic authentication.
-
Daniel Stenberg authored
"Connection: close" and actually close the connection after the response-body, libcurl could still have outstanding data to send and it would not properly notice this and stop sending. This caused weirdness and sad faces. http://curl.haxx.se/bug/view.cgi?id=2080222 Note that there are still reasons to consider libcurl's behavior when getting a >= 400 response code while sending data, as Craig Perras' note "http upload: how to stop on error" specifies: http://curl.haxx.se/mail/archive-2008-08/0138.html
-
- Aug 28, 2008
-
-
Daniel Stenberg authored
files bing mirrored) and thus I've changed the URL in the cookiejar header to no longer use curlm.haxx.se but instead use the main site curl.haxx.se
-
Daniel Stenberg authored
an unlock in between) for a certain case and that in fact works when using regular windows mutexes but not with pthreads'! Locks should of course not get locked again so this is now fixed. http://curl.haxx.se/mail/lib-2008-08/0422.html
-
Dan Fandrich authored
the HTTP method to GET (or HEAD) when given a value of 0.
-
- Aug 27, 2008
-
-
Yang Tse authored
libcurl - Win32 DLL Debug libcurl - Win32 DLL Release libcurl - Win32 LIB Debug libcurl - Win32 LIB Release
-
- Aug 26, 2008
-
-
Dan Fandrich authored
1021 and 1067.
-
Yang Tse authored
supporting configure's --disable-largefile option for WIN32 targets also. Non-configure systems which do not use config-win32.h configuration file, and want to use the WIN32 file API, must define USE_WIN32_LARGE_FILES or USE_WIN32_SMALL_FILES as appropriate in their own configuration files.
-
- Aug 23, 2008
-
-
Daniel Stenberg authored
firefox-db2pem.sh conversion script that converts a local Firefox db of ca certs into PEM format, suitable for use with a OpenSSL or GnuTLS built libcurl.
-
Daniel Stenberg authored
interface, and the proxy would send Connection: close during the authentication phase. http://curl.haxx.se/bug/view.cgi?id=2069047
-
- Aug 22, 2008
-
-
Dan Fandrich authored
which caused an error when the second header was dumped due to stdout being closed. Added test case 1066 to verify. Also fixed a potential problem where a closed file descriptor might be used for an upload when more than one URL is given.
-
Yang Tse authored
support is provided using WIN32 functions directly.
-
Yang Tse authored
-
- Aug 21, 2008
-
-
Yang Tse authored
-
- Aug 20, 2008
-
-
Yang Tse authored
-
Dan Fandrich authored
commands to the man pages.
-
Daniel Stenberg authored
memory leak because it never called the OpenSSL function CRYPTO_cleanup_all_ex_data() as it was supposed to. This was because of a missing define in config-win32.h!
-
- Aug 18, 2008
-
-
Yang Tse authored
formatting functionality when handling signed and unsigned longs, as well as our curl_off_t data type.
-
- Aug 17, 2008
-
-
Yang Tse authored
when including the OpenSSL header files. This is the recommended setting, this prevents the undesired inclusion of header files with the same name as those of OpenSSL but which do not belong to the OpenSSL package. The visible change from previously released libcurl versions is that now OpenSSl enabled NetWare builds also define USE_OPENSSL in config files, and that OpenSSL header files must be located in a subdirectory named 'openssl'.
-
- Aug 16, 2008
-
-
Yang Tse authored
remain in use as internal curl_off_t print formatting strings for the internal *printf functions which still cannot handle print formatting string directives such as "I64d", "I64u", and others available on MSVC, MinGW, Intel's ICC, and other DOS/Windows compilers. This reverts previous commit part which did: FORMAT_OFF_T -> CURL_FORMAT_CURL_OFF_T FORMAT_OFF_TU -> CURL_FORMAT_CURL_OFF_TU
-
- Aug 15, 2008
-
-
Dan Fandrich authored
was discovered to be problematic while investigating an incident reported by Von back in May. curl in this case doesn't include a Content-Length: or Transfer-Encoding: chunked header which is illegal. This test case is added to DISABLED until a solution is found.
-
Yang Tse authored
the names of the curl_off_t formatting string directives now become CURL_FORMAT_CURL_OFF_T and CURL_FORMAT_CURL_OFF_TU. CURL_FMT_OFF_T -> CURL_FORMAT_CURL_OFF_T CURL_FMT_OFF_TU -> CURL_FORMAT_CURL_OFF_TU Remove the use of an internal name for the curl_off_t formatting string directives and use the common one available from the inside and outside of the library. FORMAT_OFF_T -> CURL_FORMAT_CURL_OFF_T FORMAT_OFF_TU -> CURL_FORMAT_CURL_OFF_TU
-
- Aug 13, 2008
- Aug 12, 2008
-
-
Dan Fandrich authored
when a server responded with long headers and data. Luckily, the buffer overflowed into another unused buffer, so no actual harm was done. Added test cases 1060 and 1061 to verify.
-
Daniel Stenberg authored
_directory_ if that happened to appear in the path!
-
Yang Tse authored
constants CURL_OFF_T_C and CURL_OFF_TU_C. The clever double helper macro used internally to provide its functionality is thanks to Lars Nilsson.
-
- Aug 11, 2008
-
-
Dan Fandrich authored
line of a multiline FTP response whose last byte landed exactly at the end of the BUFSIZE-length buffer would be treated as the terminal response line. The following response code read in would then actually be the end of the previous response line, and all responses from then on would correspond to the wrong command. Test case 1062 verifies this. Stop closing a never-opened ftp socket.
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=2042430) with a patch. "NTLM Windows SSPI code is not thread safe". This was due to libcurl using static variables to tell wether to load the necessary SSPI DLL, but now the loading has been moved to the more suitable curl_global_init() call.
-
Daniel Stenberg authored
(http://curl.haxx.se/bug/view.cgi?id=2042440) with a patch. He identified a problem when using NTLM over a proxy but the end-point does Basic, and then libcurl would do wrong when the host sent "Connection: close" as the proxy's NTLM state was erroneously cleared.
-
Yang Tse authored
internal and external use. CURL_SUFFIX_CURL_OFF_T, CURL_SUFFIX_CURL_OFF_TU.
-
- Aug 08, 2008
-
-
Dan Fandrich authored
-
Dan Fandrich authored
request to prematurely end.
-
- Aug 07, 2008
-
-
Yang Tse authored
Guenter Knauf in lib/Makefile.netware is enough to get the netware autobuilds going again.
-
Yang Tse authored
for non-configure targets when host system doesn't run buildconf.bat.
-
Yang Tse authored
-
Yang Tse authored
away our CVS checked 'missing' file and also CVS checked 'hiper/Makefile'.
-
Yang Tse authored
in a set of double-quoted strings, this macro will now return an expansion which consists of a single double-quoted string result of concatenating all of them.
-
Yang Tse authored
to have a curl_off_t data type no longer gated to off_t.
-
- Aug 05, 2008
-
-
Yang Tse authored
Validate that aclocal and automake versions match. Improve removal of previous run generated files. Remove verbose debug logging of aclocal on Solaris.
-