#
13dc82b9 |
| 23-Aug-2008 |
Daniel Stenberg |
- Constantine Sapuntzakis fixed a bug when doing proxy CONNECT with the multi interface, and the proxy would send Connection: close during the authentication phase. http://curl.haxx.se/b
- Constantine Sapuntzakis fixed a bug when doing proxy CONNECT with the multi interface, and the proxy would send Connection: close during the authentication phase. http://curl.haxx.se/bug/view.cgi?id=2069047
show more ...
|
#
e3ad6d2b |
| 22-Aug-2008 |
Dan Fandrich |
Fixed a problem when --dump-header - was given with more than one URL, which caused an error when the second header was dumped due to stdout being closed. Added test case 1066 to verify. Al
Fixed a problem when --dump-header - was given with more than one URL, 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.
show more ...
|
#
9bb5da96 |
| 22-Aug-2008 |
Yang Tse |
Improved curl_m*printf() integral data type size and signedness handling
|
#
0f98ba47 |
| 22-Aug-2008 |
Daniel Stenberg |
Jamie Lokier is always helpful and this time around too...
|
#
3743f515 |
| 20-Aug-2008 |
Daniel Stenberg |
- Phil Pellouchoud pointed out that the windows version of libcurl had a memory leak because it never called the OpenSSL function CRYPTO_cleanup_all_ex_data() as it was supposed to. This
- Phil Pellouchoud pointed out that the windows version of libcurl had a 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!
show more ...
|
#
a2c50a98 |
| 13-Aug-2008 |
Daniel Stenberg |
on second thought, let's remove this number from here since it doesn't really belong among the release numbers anyway
|
#
23478b89 |
| 13-Aug-2008 |
Daniel Stenberg |
dead mirrors removed => http://curl.haxx.se/mail/lib-2008-08/0208.html
|
#
389e50ff |
| 13-Aug-2008 |
Dan Fandrich |
Added a few user-visible bug fixes
|
#
14a55963 |
| 12-Aug-2008 |
Daniel Stenberg |
- Andy Tsouladze fixed runtests.pl to not attempt to execute the stunnel _directory_ if that happened to appear in the path!
|
#
60a3773c |
| 12-Aug-2008 |
Yang Tse |
Added macros for minimum-width signed and unsigned curl_off_t integer constants CURL_OFF_T_C and CURL_OFF_TU_C. The clever double helper macro used internally to provide its functionality is
Added macros for minimum-width signed and unsigned curl_off_t integer 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.
show more ...
|
#
f8a3aa91 |
| 11-Aug-2008 |
Daniel Stenberg |
- Constantine Sapuntzakis filed bug report #2042430 (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
- Constantine Sapuntzakis filed bug report #2042430 (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.
show more ...
|
#
019bde82 |
| 11-Aug-2008 |
Daniel Stenberg |
- Constantine Sapuntzakis filed bug report #2042440 (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
- Constantine Sapuntzakis filed bug report #2042440 (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.
show more ...
|
#
14240e9e |
| 07-Aug-2008 |
Yang Tse |
Initial support of curlbuild.h and curlrules.h which allows to have a curl_off_t data type no longer gated to off_t.
|
#
ed50e3f1 |
| 04-Aug-2008 |
Daniel Stenberg |
- Yehoshua Hershberg found a problem that would make libcurl re-use a connection with the multi interface even if a previous use of it caused a CURLE_PEER_FAILED_VERIFICATION to get retur
- Yehoshua Hershberg found a problem that would make libcurl re-use a 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.
show more ...
|
#
3a499099 |
| 04-Aug-2008 |
Daniel Stenberg |
- Test cases 1051, 1052 and 1055 were added by Daniel Fandrich on July 30 and proved how PUT and POST with a redirect could lead to a "hang" due to the data stream not being rewound prope
- Test cases 1051, 1052 and 1055 were added by Daniel Fandrich on July 30 and 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.
show more ...
|
#
8d012181 |
| 03-Aug-2008 |
Daniel Stenberg |
- Test case 1041 (added by Daniel Fandrich April 14th) proved a bug where PUT with -C - sent garbage in the Content-Range: header. I fixed this problem by making sure libcurl always sets
- Test case 1041 (added by Daniel Fandrich April 14th) proved a bug where PUT 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.
show more ...
|
#
d6344d9b |
| 03-Aug-2008 |
Daniel Stenberg |
refer to the new option by its real name
|
#
7c6df713 |
| 02-Aug-2008 |
Yang Tse |
No longer test availability of the gdi32 library, nor use it for linking, even when we have been doing this since revision 1.47 of configure.ac 4 years and 5 months ago when cross-compiling a
No longer test availability of the gdi32 library, nor use it for linking, even 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.
show more ...
|
#
42cabc14 |
| 01-Aug-2008 |
Dan Fandrich |
Added support for --append on SFTP uploads. Unfortunately, OpenSSH doesn't support this so it goes untested.
|
#
296a6f77 |
| 01-Aug-2008 |
Yang Tse |
Sync up with reality
|
#
9251dd7b |
| 01-Aug-2008 |
Dan Fandrich |
User names embedded in proxy URLs without a password were parsed incorrectly--the host name is treated as part of the user name and the port number becomes the password. This can be observed
User names embedded in proxy URLs without a password were parsed 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).
show more ...
|
#
b4a5ce89 |
| 31-Jul-2008 |
Dan Fandrich |
Fixed a problem with any FTP URL or any URLs containing an IPv6 address being mangled when passed to proxies when CURLOPT_PORT is also set (reported by Pramod Sharma).
|
#
9dfd6eac |
| 30-Jul-2008 |
Daniel Stenberg |
another option added, bump counter
|
#
5aed78e1 |
| 30-Jul-2008 |
Daniel Stenberg |
- Phil Blundell added the CURLOPT_SCOPE option, as well as adjusted the URL parser to allow numerical IPv6-addresses to be specified with the scope given, as per RFC4007 - with a percent
- Phil Blundell added the CURLOPT_SCOPE option, as well as adjusted the URL 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]/"
show more ...
|
#
ae654266 |
| 30-Jul-2008 |
Daniel Stenberg |
- PHP's bug report #43158 (http://bugs.php.net/bug.php?id=43158) identifies a true bug in libcurl built with OpenSSL. It made curl_easy_getinfo() more or less always return 0 for CURLINFO
- PHP's bug report #43158 (http://bugs.php.net/bug.php?id=43158) identifies a 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.
show more ...
|