#
5cf78472 |
| 08-Jul-2009 |
Daniel Stenberg |
- Constantine Sapuntzakis posted bug report #2813123 (http://curl.haxx.se/bug/view.cgi?id=2813123) and an a patch that fixes the problem: Url A is accessed using auth. Url A re
- Constantine Sapuntzakis posted bug report #2813123 (http://curl.haxx.se/bug/view.cgi?id=2813123) and an a patch that fixes the problem: Url A is accessed using auth. Url A redirects to Url B (on a different server0. Url B reuses a persistent connection. Url B has auth, even though it's on a different server. Note: if Url B does not reuse a persistent connection, auth is not sent.
show more ...
|
#
18f238dd |
| 29-Jun-2009 |
Daniel Stenberg |
my CURLINFO_CERTINFO fix
|
#
4f551259 |
| 29-Jun-2009 |
Daniel Stenberg |
- Markus Koetter made CURLOPT_FTPPORT (and curl's -P/--ftpport) support a port range if given colon-separated after the host name/address part. Like "192.168.0.1:2000-10000"
|
#
a0474685 |
| 16-Jun-2009 |
Daniel Stenberg |
- Reuven Wachtfogel made curl -o - properly produce a binary output on windows (no newline translations). Use -B/--use-ascii if you rather get the ascii approach.
|
#
0b317b72 |
| 16-Jun-2009 |
Michal Marek |
- When doing non-anonymous ftp via http proxies and the password is not provided in the url, add it there (squid needs this).
|
#
4b6d3a2b |
| 15-Jun-2009 |
Daniel Stenberg |
- Eric Wong's patch: This allows curl(1) to be used as a client-side tunnel for arbitrary stream protocols by abusing chunked transfer encoding in both the HTTP request and HTT
- Eric Wong's patch: This allows curl(1) to be used as a client-side tunnel for arbitrary stream protocols by abusing chunked transfer encoding in both the HTTP request and HTTP response. This requires server support for sending a response while a request is still being read, of course. If attempting to read from stdin returns EAGAIN, then we pause our sender. This leaves curl to attempt to read from the socket while reading from stdin (and thus sending) is paused.
show more ...
|
#
35217709 |
| 10-Jun-2009 |
Daniel Stenberg |
- Fabian Keil ran clang on the (lib)curl code, found a bunch of warnings and contributed a range of patches to fix them.
|
#
16ae283f |
| 09-Jun-2009 |
Yang Tse |
initialize fread callback pointer to avoid compiler warning
|
#
3e0c067e |
| 08-Jun-2009 |
Daniel Stenberg |
- Claes Jakobsson provided a patch for libcurl-NSS that fixed a bad refcount issue with client certs that caused issues like segfaults. http://curl.haxx.se/mail/lib-2009-05/0316.html
|
#
f90551ff |
| 08-Jun-2009 |
Daniel Stenberg |
- Triggered by bug report #2798852 and the patch in there, I fixed configure to detect gnutls build options with pkg-config only and not libgnutls-config anymore since GnuTLS has stopped
- Triggered by bug report #2798852 and the patch in there, I fixed configure to detect gnutls build options with pkg-config only and not libgnutls-config anymore since GnuTLS has stopped distributing that tool. If an explicit path is given to configure, we will instead guess on how to link and use that lib. I did not use the patch from the bug report.
show more ...
|
#
f45500c6 |
| 08-Jun-2009 |
Daniel Stenberg |
djgpp build fix
|
#
e08f81c8 |
| 07-Jun-2009 |
Daniel Stenberg |
Bill Hoffman (6 June 2009) - Added some cmake docs and fixed socklen_t in the build.
|
#
9324f1c2 |
| 07-Jun-2009 |
Daniel Stenberg |
- Eric Wong fixed --no-buffer to actually switch off output buffering. Been broken since 7.19.0
|
#
027cb376 |
| 05-Jun-2009 |
Yang Tse |
mention last changes
|
#
ce1a5841 |
| 05-Jun-2009 |
Daniel Stenberg |
remove conflict markers
|
#
1012c570 |
| 05-Jun-2009 |
Daniel Stenberg |
- Setting the Content-Length: header from your app when you do a POST or PUT is almost always a VERY BAD IDEA. Yet there are still apps out there doing this, and now recently it triggered
- Setting the Content-Length: header from your app when you do a POST or PUT is almost always a VERY BAD IDEA. Yet there are still apps out there doing this, and now recently it triggered a bug/side-effect in libcurl as when libcurl sends a POST or PUT with NTLM, it sends an empty post first when it knows it will just get a 401/407 back. If the app then replaced the Content-Length header, it caused the server to wait for input that libcurl wouldn't send. Aaron Oneal reported this problem in bug report #2799008 http://curl.haxx.se/bug/view.cgi?id=2799008) and helped us verify the fix.
show more ...
|
#
00883822 |
| 04-Jun-2009 |
Yang Tse |
allow building libcurl for VxWorks
|
#
9dcc1b33 |
| 01-Jun-2009 |
Daniel Stenberg |
- Claes Jakobsson fixed the configure script to better find and use NSS without pkg-config.
|
#
e3c37aac |
| 01-Jun-2009 |
Yang Tse |
credit John E. Malmberg
|
#
0bf9c1e8 |
| 27-May-2009 |
Daniel Stenberg |
- Claes Jakobsson fixed libcurl-NSS to build fine even without the PK11_CreateGenericObject() function.
|
#
bf07d377 |
| 27-May-2009 |
Daniel Stenberg |
- Mike Crowe pointed out that setting CURLOPT_USERPWD to NULL used to clear the auth credentials back in 7.19.0 and earlier while now you have to set "" to get the same effect. His patch
- Mike Crowe pointed out that setting CURLOPT_USERPWD to NULL used to clear the auth credentials back in 7.19.0 and earlier while now you have to set "" to get the same effect. His patch brings back the ability to use NULL.
show more ...
|
#
eecb7136 |
| 27-May-2009 |
Daniel Stenberg |
- Andre Guibert de Bruet found a call to a OpenSSL function that didn't check for a failure properly.
|
#
bf085e2c |
| 27-May-2009 |
Daniel Stenberg |
- Frank McGeough provided a small OpenSSL #include fix to make libcurl compile fine with Nokia 5th edition 1.0 SDK for Symbian.
|
#
1cf6c15a |
| 25-May-2009 |
Daniel Stenberg |
- bug report #2796358 (http://curl.haxx.se/bug/view.cgi?id=2796358) pointed out that the cookie parser would leak memory when it parses cookies that are received with domain, path etc set
- bug report #2796358 (http://curl.haxx.se/bug/view.cgi?id=2796358) pointed out that the cookie parser would leak memory when it parses cookies that are received with domain, path etc set multiple times in the same header. While such a cookie is questionable, they occur in the wild and libcurl no longer leaks memory for them. I added such a header to test case 8.
show more ...
|
#
de7a1400 |
| 19-May-2009 |
Daniel Stenberg |
- Kamil Dudka brought the patch from the Redhat bug entry https://bugzilla.redhat.com/show_bug.cgi?id=427966 which was libcurl closing a bad file descriptor when closing down the FTP data
- Kamil Dudka brought the patch from the Redhat bug entry https://bugzilla.redhat.com/show_bug.cgi?id=427966 which was libcurl closing a bad file descriptor when closing down the FTP data connection. Caolan McNamara seems to be the original author of it.
show more ...
|