summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* testcurl now uses git instead of CVSDaniel Stenberg2010-03-242-48/+39
|
* Merge branch 'master' of github.com:bagder/curlBill Hoffman2010-03-245-21/+29
|\
| * fix: timeout after last data chunk was handledBob Richmond2010-03-243-14/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Bob Richmond: There's an annoying situation where libcurl will read new HTTP response data from a socket, then check if it's a timeout if one is set. If the last packet received constitutes the end of the response body, libcurl still treats it as a timeout condition and reports a message like: "Operation timed out after 3000 milliseconds with 876 out of 876 bytes received" It should only a timeout if the timer lapsed and we DIDN'T receive the end of the response body yet.
| * avoid compiler warning without USE_ALARM_TIMEOUTDaniel Stenberg2010-03-241-1/+1
| |
| * remove debug printfsChris Conroy2010-03-241-6/+0
| |
* | Enable LDAP by default since it is now disabled when ldap.h is not found,Bill Hoffman2010-03-241-1/+1
| |
* | CMake fixes for Linux.Bill Hoffman2010-03-244-2/+19
| | | | | | | | | | Make sure <sys/socket.h> is included if around when testing/using socklen_t. Also, disable LDAP if LDAP_H is not found on the system.
* | Fix curl CMake build.Bill Hoffman2010-03-243-62/+37
|/ | | | | | | | | This commit fixes the cmake build of curl, and cleans up the cmake code a little. It removes some commented out code and some trailing whitespace. To get curl to build the binary tree include/curl directory needed to be added to the include path. Also, SIZEOF_SHORT needed to be added. A check for the lack of defines of SIZEOF_* for warnless.c was added.
* RTSP GET_PARAMETER fixDaniel Stenberg2010-03-242-1/+6
| | | | | | Christopher Conroy fixed a problem with RTSP and GET_PARAMETER reported to us by Massimo Callegari. There's a new test case 572 that verifies this now.
* remove trace of CVSDaniel Stenberg2010-03-241-2/+0
|
* Fix RTSP GET_PARAMETER empty and non-empty operation.Chris Conroy2010-03-246-33/+338
| | | | Test coverage included. Thanks to Massimo Callegari for the bug report
* s/CVS/DEV/ in the version string for repo versionsDaniel Stenberg2010-03-241-1/+1
|
* scrapped all left-over TODOsDaniel Stenberg2010-03-241-13/+2
| | | | | | | | | In order to get back on track, I've removed all the plans for stuff I had in the queue. I will instead focus on fixing bugs and relying on that people who truly want things added will come back on the mailing list and nag and provide patches. 7.20.1 should be possible to release in April 2010
* restore executable bits on some filesDaniel Stenberg2010-03-2412-0/+0
|
* remove the CVSish $Id$ linesDaniel Stenberg2010-03-24434-434/+0
|
* The 'ares' subtree has been removed from the source repositoryDaniel Stenberg2010-03-242-1/+8
|
* s/CVS/gitDaniel Stenberg2010-03-243-5/+5
|
* update to current stateDaniel Stenberg2010-03-244-12/+15
|
* remove the ares subtreeDaniel Stenberg2010-03-24153-30263/+0
| | | | | | c-ares is now hosted entirely separate from the curl project see http://c-ares.haxx.se/ for all details concerning c-ares, its source repository and more.
* mark connection as connectedDaniel Stenberg2010-03-233-1/+10
| | | | | | | | | | Kenny To filed the bug report #2963679 with patch to fix a problem he experienced with doing multi interface HTTP POST over a proxy using PROXYTUNNEL. He found a case where it would connect fine but bits.tcpconnect was not set correct so libcurl didn't work properly. (http://curl.haxx.se/bug/view.cgi?id=2963679)
* enabled valgrindDaniel Stenberg2010-03-231-3/+1
| | | | | I ran it now successfully and it helped to pinpoint a libssh2 memory leak!
* Updated Symbian notesDan Fandrich2010-03-231-2/+7
|
* chunked-encoding with Content-Length: header problemDaniel Stenberg2010-03-233-3/+9
| | | | | | | | Akos Pasztory filed debian bug report #572276 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=572276 mentioning a problem with a resource that returns chunked-encoded _and_ with a Content-Length and libcurl failed to properly ignore the latter information.
* delayed easy handle kill caused double Curl_close() callDaniel Stenberg2010-03-233-3/+25
| | | | | | | | | | | | | | | | | Hauke Duden provided an example program that made the multi interface crash. His example simply used the multi interface and did first one FTP transfer and after completion it used a second easy handle and did another FTP transfer on the same FTP server. This triggered a bug in the "delayed easy handle kill" system that curl uses: when an FTP connection is left alive it must keep an easy handle around internally - only for the purpose of having an easy handle when it later disconnects it. The code assumed that when the easy handle was removed and an internal reference was made, that version could be killed later on when a new easy handle came using the same connection. This was wrong as Hauke's example showed that the removed handle wasn't killed for real until later. This caused a double close attempt => segfault.
* ignore more files generated when tests run in the source treeDaniel Stenberg2010-03-233-0/+18
|
* Thomas Lopatic fixed the alarm()-based DNS timeoutDaniel Stenberg2010-03-222-1/+15
|
* fix the alarm()-based DNS timeoutThomas Lopatic2010-03-221-9/+15
| | | | | | | | | | | | | | Looking at the code of Curl_resolv_timeout() in hostip.c, I think that in case of a timeout, the signal handler for SIGALRM never gets removed. I think that in my case it gets executed at some point later on when execution has long left Curl_resolv_timeout() or even the cURL library. The code that is jumped to with siglongjmp() simply sets the error message to "name lookup timed out" and then returns with CURLRESOLV_ERROR. I guess that instead of simply returning without cleaning up, the code should have a goto that jumps to the spot right after the call to Curl_resolv().
* Fix warnings for clangDaniel Johnson2010-03-222-4/+14
|
* Merge branch 'master' of github.com:bagder/curlDaniel Stenberg2010-03-223-0/+15
|\
| * Fix insufficient initialization in Curl_clone_ssl_config()douglas steinwand2010-03-223-0/+15
| | | | | | | | which could have caused a double free when reusing curl handle.
* | we never used this file anywayDaniel Stenberg2010-03-221-39/+0
| |
* | s/CVS/gitDaniel Stenberg2010-03-221-5/+5
|/
* various changes of CVS to gitDaniel Stenberg2010-03-228-33/+34
|
* remove references to CVS in the code and use DEV insteadDaniel Stenberg2010-03-221-3/+3
|
* Ben Greear's two fixes explainedDaniel Stenberg2010-03-212-0/+6
|
* Fix tftp return codes and tsize upload handlingBen Greear2010-03-211-7/+15
| | | | | | | | | Error codes were not properly returned to the main curl code (and on to apps using libcurl). tftp was crapping out when tsize == 0 on upload, but I see no reason to fail to upload just because the remote file is zero-length. Ignore tsize option on upload.
* more files to ignoreDaniel Stenberg2010-03-212-1/+4
|
* provide an initial set of .gitignore filesDaniel Stenberg2010-03-2010-0/+72
|
* - Improved Curl_read() to not ignore the error returned from Curl_ssl_recv().Kamil Dudka2010-03-193-7/+12
|
* fix warning about conversions between curl_off_t and longDaniel Stenberg2010-03-181-4/+7
|
* another shot at the ftp_init() icc 9.1 optimizer issueYang Tse2010-03-181-4/+8
|
* replaced intel compiler option -no-ansi-alias with -fno-strict-aliasingYang Tse2010-03-172-6/+6
|
* update outdated serial numberYang Tse2010-03-174-4/+4
|
* Factored out some code into a few independent functionsDan Fandrich2010-03-161-75/+105
|
* - Constantine Sapuntzakis brought a patch:Daniel Stenberg2010-03-153-68/+83
| | | | | | | | | The problem mentioned on Dec 10 2009 (http://curl.haxx.se/bug/view.cgi?id=2905220) was only partially fixed. Partially because an easy handle can be associated with many connections in the cache (e.g. if there is a redirect during the lifetime of the easy handle). The previous patch only cleaned up the first one. The new fix now removes the easy handle from all connections, not just the first one.
* fix compiler warningYang Tse2010-03-114-12/+10
|
* SSL should now be working out-of-the-box on Symbian S60.Dan Fandrich2010-03-111-5/+3
|
* Enable Symbian zlib support by default.Dan Fandrich2010-03-111-1/+1
|
* Allow compilation even when OpenSSL has been configured without MD4 support.Dan Fandrich2010-03-111-5/+16
|
* A few Symbian build changesDan Fandrich2010-03-103-13/+13
|