summaryrefslogtreecommitdiff
path: root/CHANGES
Commit message (Collapse)AuthorAgeFilesLines
* renamed generated config.h to curl_config.h in order to avoid clashes when ↵Gunter Knauf2009-07-141-0/+4
| | | | libcurl is used with other projects which also have a config.h.
* - Eric Wong introduced curlx_nonblock() that the curl tool now (re-)uses forDaniel Stenberg2009-07-091-0/+5
| | | | | setting a file descriptor non-blocking. Used by the functionality Eric himself brough on June 15th.
* - Constantine Sapuntzakis posted bug report #2813123Daniel Stenberg2009-07-081-1/+22
| | | | | | | | | | | (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.
* Markus Koetter provided a patch to avoid getnameinfo() usage which broke a ↵Gunter Knauf2009-07-041-0/+4
| | | | couple of both IPv4 and IPv6 autobuilds.
* - Markus Koetter made CURLOPT_FTPPORT (and curl's -P/--ftpport) support a portDaniel Stenberg2009-06-291-0/+10
| | | | | range if given colon-separated after the host name/address part. Like "192.168.0.1:2000-10000"
* Added a few more compiler warning options for gcc.Dan Fandrich2009-06-171-0/+3
|
* - Reuven Wachtfogel made curl -o - properly produce a binary output on windowsDaniel Stenberg2009-06-161-0/+5
| | | | | (no newline translations). Use -B/--use-ascii if you rather get the ascii approach.
* - When doing non-anonymous ftp via http proxies and the password is notMichal Marek2009-06-161-0/+4
| | | | provided in the url, add it there (squid needs this).
* - Eric Wong's patch:Daniel Stenberg2009-06-151-0/+15
| | | | | | | | | | | 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.
* Replaced use of standard C library rand()/srand() by our own pseudo-random ↵Patrick Monnerat2009-06-151-0/+4
| | | | number generator.
* mention configure --enable-curldebug decoupled from --enable-debugYang Tse2009-06-111-0/+15
|
* changed testcurl script to allow building test harnessYang Tse2009-06-111-0/+4
| | | | programs when cross-compiling for a *-*-mingw* host.
* - Fabian Keil ran clang on the (lib)curl code, found a bunch of warnings andDaniel Stenberg2009-06-101-0/+4
| | | | contributed a range of patches to fix them.
* initialize fread callback pointer to avoid compiler warningYang Tse2009-06-091-1/+6
|
* - Claes Jakobsson provided a patch for libcurl-NSS that fixed a bad refcountDaniel Stenberg2009-06-081-0/+4
| | | | | issue with client certs that caused issues like segfaults. http://curl.haxx.se/mail/lib-2009-05/0316.html
* - Triggered by bug report #2798852 and the patch in there, I fixed configureDaniel Stenberg2009-06-081-2/+9
| | | | | | | 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.
* mention last changesYang Tse2009-06-081-0/+3
|
* mention last changesYang Tse2009-06-081-0/+4
|
* Bill Hoffman (6 June 2009)Daniel Stenberg2009-06-071-0/+3
| | | | - Added some cmake docs and fixed socklen_t in the build.
* - Eric Wong fixed --no-buffer to actually switch off output buffering. BeenDaniel Stenberg2009-06-071-0/+4
| | | | broken since 7.19.0
* mention last changesYang Tse2009-06-051-1/+1
|
* mention last changesYang Tse2009-06-051-0/+13
|
* remove conflict markersDaniel Stenberg2009-06-051-3/+0
|
* - Setting the Content-Length: header from your app when you do a POST or PUTDaniel Stenberg2009-06-051-0/+13
| | | | | | | | | | 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.
* allow building libcurl for VxWorksYang Tse2009-06-041-0/+5
|
* Created a basic Android make file for curl and libcurl. A config.hDan Fandrich2009-06-021-0/+7
| | | | | is also needed before curl can be built in Android, but it's not clear what the best way is to provide one.
* - Claes Jakobsson fixed the configure script to better find and use NSSDaniel Stenberg2009-06-011-0/+4
| | | | without pkg-config.
* credit John E. MalmbergYang Tse2009-06-011-0/+7
|
* - Claes Jakobsson fixed libcurl-NSS to build fine even without theDaniel Stenberg2009-05-271-0/+3
| | | | PK11_CreateGenericObject() function.
* - Mike Crowe pointed out that setting CURLOPT_USERPWD to NULL used to clearDaniel Stenberg2009-05-271-0/+4
| | | | | 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.
* - Andre Guibert de Bruet found a call to a OpenSSL function that didn't checkDaniel Stenberg2009-05-271-0/+3
| | | | for a failure properly.
* - Frank McGeough provided a small OpenSSL #include fix to make libcurl compileDaniel Stenberg2009-05-271-0/+4
| | | | fine with Nokia 5th edition 1.0 SDK for Symbian.
* - bug report #2796358 (http://curl.haxx.se/bug/view.cgi?id=2796358) pointedDaniel Stenberg2009-05-251-0/+7
| | | | | | | 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.
* Removed some obsolete digest code that caused a valgrind error in test 551.Dan Fandrich2009-05-221-0/+3
|
* Added "non-existing host" test keywords to make it easy to skip thoseDan Fandrich2009-05-201-0/+5
| | | | | tests on machines that have broken DNS configurations (such as those configured to use OpenDNS).
* - Kamil Dudka brought the patch from the Redhat bug entryDaniel Stenberg2009-05-191-0/+6
| | | | | | 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.
* 7.19.5 coming upcurl-7_19_5Daniel Stenberg2009-05-181-0/+2
|
* - James Bursa posted a patch to the mailing list that fixed a problem withDaniel Stenberg2009-05-171-0/+5
| | | | | no_proxy which made it not skip the proxy if the URL entered contained a user name. I added test case 1101 to verify.
* - Balint Szilakszi reported a memory leak when libcurl did gzip decompressionDaniel Stenberg2009-05-111-0/+5
| | | | | | of streams that had some parts (legitimately) missing. We now provide and use a proper cleanup function for the content encoding submodule. http://curl.haxx.se/mail/lib-2009-05/0092.html
* - Kamil Dudka provided a fix for libcurl-NSS reported by Michael CronenworthDaniel Stenberg2009-05-111-0/+6
| | | | | | | at https://bugzilla.redhat.com/show_bug.cgi?id=453612#c12 If an incorrect password is given while loading a private key, libcurl ends up in an infinite loop consuming memory. The bug is critical.
* - I fixed the problem with doing NTLM, POST and then following a 302 redirect,Daniel Stenberg2009-05-111-0/+6
| | | | | | as reported by Ebenezer Ikonne (on curl-users) and Laurent Rabret (on curl-library). The transfer was mistakenly marked to get more data to send but since it didn't actually have that, it just hung there...
* - Andre Guibert de Bruet correctly pointed out an over-alloc with one wastedDaniel Stenberg2009-05-101-0/+4
| | | | byte in the digest code.
* Mention last changesYang Tse2009-05-091-0/+6
|
* Mention last changesYang Tse2009-05-081-0/+6
|
* - Constantine Sapuntzakis fixed bug report #2784055Daniel Stenberg2009-05-081-0/+9
| | | | | | | | | (http://curl.haxx.se/bug/view.cgi?id=2784055) identifying a problem to connect to SOCKS proxies when using the multi interface. It turned out to almost not work at all previously. We need to wait for the TCP connect to be properly verified before doing the SOCKS magic. There's still a flaw in the FTP code for this.
* - Made the SO_SNDBUF setting for the data connection socket for ftp uploads asDaniel Stenberg2009-05-071-0/+4
| | | | well. See change 28 Apr 2009.
* Fix an issue, affecting FTP transfers, introduced with the transfer.c patch ↵Yang Tse2009-05-071-0/+4
| | | | | | committed May 4. Additionally some identation fixes.
* - Man page *roff problems fixed thanks to input from Colin Watson. ProblemsDaniel Stenberg2009-05-071-0/+3
| | | | reported in the Debian package.
* - Vijay G filed bug report #2723236Daniel Stenberg2009-05-071-0/+5
| | | | | (http://curl.haxx.se/bug/view.cgi?id=2723236) identifying a problem with libcurl's TFTP code and its lack of dealing with the OACK packet.
* Mention last changesYang Tse2009-05-051-0/+4
|