- Aug 12, 2008
-
-
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.
-
- Aug 04, 2008
-
-
Daniel Stenberg authored
connection with the multi interface even if a previous use of it caused a CURLE_PEER_FAILED_VERIFICATION to get returned. I now make sure that failed SSL connections properly close the connections.
-
Daniel Stenberg authored
proved how PUT and POST with a redirect could lead to a "hang" due to the data stream not being rewound properly when it had to in order to get sent properly (again) to the subsequent URL. This is now fixed and these test cases are no longer disabled.
-
Yang Tse authored
Prior versions of autoconf defined _ALL_SOURCE if _AIX was defined. But, autoconf 2.62 version of AC_AIX defines _ALL_SOURCE along with other four preprocessor symbols no matter if the system is AIX or not. To keep the traditional behaviour, as well as an uniform one, across autoconf versions AC_AIX is replaced with our own internal macro.
-
- Aug 03, 2008
-
-
Daniel Stenberg authored
with -C - sent garbage in the Content-Range: header. I fixed this problem by making sure libcurl always sets the size of the _entire_ upload if an app attemps to do resumed uploads since libcurl simply cannot know the size of what is currently at the server end. Test 1041 is no longer disabled.
-
Daniel Stenberg authored
-
- Aug 02, 2008
-
-
Yang Tse authored
when we have been doing this since revision 1.47 of configure.ac 4 years and 5 months ago when cross-compiling a Windows target. We actually don't use any function from the Windows GDI (Graphics Device Interface) related with drawing or graphics-related operations.
-
- Aug 01, 2008
-
-
Dan Fandrich authored
support this so it goes untested.
-
Yang Tse authored
not been in use since revision 1.81 of configure.in 6 years, 9 months ago.
-
Yang Tse authored
-
Dan Fandrich authored
incorrectly--the host name is treated as part of the user name and the port number becomes the password. This can be observed in test 279 (was KNOWN_ISSUE #54).
-
- Jul 31, 2008
-
-
Dan Fandrich authored
being mangled when passed to proxies when CURLOPT_PORT is also set (reported by Pramod Sharma).
-
Dan Fandrich authored
as well as IPv4 addresses in IPv6 format. Also, better handle the case of a malformatted IPv6 address (avoid empty and NULL strings).
-
Dan Fandrich authored
Factored out unslashquote. Added some 'const's in function parameters.
-
- Jul 30, 2008
-
-
Daniel Stenberg authored
parser to allow numerical IPv6-addresses to be specified with the scope given, as per RFC4007 - with a percent letter that itself needs to be URL escaped. For example, for an address of fe80::1234%1 the HTTP URL is: "http://[fe80::1234%251]/"
-
http://bugs.php.net/bug.php?id=43158Daniel Stenberg authored
true bug in libcurl built with OpenSSL. It made curl_easy_getinfo() more or less always return 0 for CURLINFO_SSL_VERIFYRESULT because the function that would set it to something non-zero would return before the assign in almost all error cases. The internal variable is now set to non-zero from the start of the function only to get cleared later on if things work out fine.
-
Dan Fandrich authored
during redirects. Test cases 1052 and 1055 show problems (maybe the same root cause as 1051) and are disabled.
-
Dan Fandrich authored
by Ben Sutcliffe. The test when run manually shows a problem in curl, but the test harness web server doesn't run the test correctly so it's disabled for now.
-
Dan Fandrich authored
and OS/2.
-
- Jul 29, 2008
-
-
Dan Fandrich authored
Made --interface tests less restrictive on host address.
-
- Jul 28, 2008
-
-
Dan Fandrich authored
localhost interface.
-
- Jul 27, 2008
-
-
Dan Fandrich authored
-
- Jul 26, 2008
-
-
Daniel Stenberg authored
overrun" (http://curl.haxx.se/bug/view.cgi?id=2026240) identifying two problems, and providing the fix for them: - CURL_READFUNC_PAUSE did in fact not pause the _sending_ of data that it is designed for but paused _receiving_ of data! - libcurl didn't internally set the read counter to zero when this return code was detected, which would potentially lead to junk getting sent to the server.
-
Dan Fandrich authored
-
- Jul 24, 2008
-
-
Dan Fandrich authored
lines ending in \r.
-
- Jul 23, 2008
-
-
Daniel Stenberg authored
non-zero with the fixed value of 1. We should strive at making options support '1' for enabling them mentioned explicitly, as that then will allow us for to extend them in the future without breaking older programs.
-