aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-06-15fixed TRUE/FALSE case typo.Gunter Knauf
2009-06-15- Eric Wong's patch:Daniel Stenberg
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.
2009-06-15curl_multi_socket_action() is the one to use nowadays, as Mohun BiswasDaniel Stenberg
pointed out!
2009-06-15Replaced use of standard C library rand()/srand() by our own pseudo-random ↵Patrick Monnerat
number generator.
2009-06-15DEBUGBUILD / CURLDEBUG decoupling follow-upYang Tse
2009-06-15 DEBUGBUILD / CURLDEBUG decoupling follow-upYang Tse
2009-06-13Remove HAVE_CONFIG_H definition from here,Yang Tse
CFLAGS from common.dj already defines it.
2009-06-13add default USE_CURLDEBUG settingYang Tse
2009-06-13initial step towards decoupling c-ares from libcurl for DOSYang Tse
2009-06-13improve usability with UNIX-like shells or a DOS command interpretersYang Tse
2009-06-13don't ignore these subdirs, they must be removed firstYang Tse
2009-06-13Remove DEBUGBUILD symbol definition, is not required for programs using the ↵Yang Tse
library.
2009-06-13DEBUGBUILD symbol definition for debug buildsYang Tse
2009-06-13ignore some subdirsYang Tse
2009-06-13fix commentYang Tse
2009-06-12Try to make more clear that --enable-curldebug has nothing to do with ↵Yang Tse
--enable-debug for this library.
2009-06-12Revert last change, it is inappropriate.Yang Tse
2009-06-12Replace CURLDEBUG with DEBUGBUILD.Gisle Vanem
2009-06-12fix compiler warningYang Tse
2009-06-12Fixed to take in account the different interpretation of doubleYang Tse
quootes on UNIX-like shells vs DOS-like command interpreters.
2009-06-12include <limits.h> for INT_MAX definitionYang Tse
2009-06-12fix compiler warningYang Tse
2009-06-11fix compiler warningYang Tse
2009-06-11when running automake copy missing files instead of symlinking themYang Tse
2009-06-11DOS adjustmentsYang Tse
2009-06-11added header inclusion guardYang Tse
2009-06-11mention configure --enable-curldebug decoupled from --enable-debugYang Tse
2009-06-11changed testcurl script to allow building test harnessYang Tse
programs when cross-compiling for a *-*-mingw* host.
2009-06-10- Fabian Keil ran clang on the (lib)curl code, found a bunch of warnings andDaniel Stenberg
contributed a range of patches to fix them.
2009-06-10extended the CURLOPT_HEADERFUNCTION description with Aaron Oneal's helpDaniel Stenberg
2009-06-10VMS adjustmentsYang Tse
2009-06-10ENH: extract version from curlver.hBill Hoffman
2009-06-10VMS adjustmentYang Tse
2009-06-10fix language in commentYang Tse
2009-06-10TrackMemory is another feature not supported by curl-configYang Tse
2009-06-10Adjusted to take in account that...Yang Tse
With the curl memory tracking feature decoupled from the debug build feature, CURLDEBUG and DEBUGBUILD preprocessor symbol definitions are used as follows: CURLDEBUG used for curl debug memory tracking specific code (--enable-curldebug) DEBUGBUILD used for debug enabled specific code (--enable-debug)
2009-06-09Added --enable-curldebug configure option to enable and disable buildingYang Tse
with the low-level curl debug memory tracking 'feature' to allow decoupled setting from --enable-debug.
2009-06-09c-ares' --enable-debug --enable-curldebug decoupling follow-upYang Tse
2009-06-09ENH: lower case cmake functions and remove tabs and re-indent cmake codeBill Hoffman
2009-06-09providing two more answersDaniel Stenberg
2009-06-09initialize fread callback pointer to avoid compiler warningYang Tse
2009-06-09fix compiler warningYang Tse
2009-06-08- Claes Jakobsson provided a patch for libcurl-NSS that fixed a bad refcountDaniel Stenberg
issue with client certs that caused issues like segfaults. http://curl.haxx.se/mail/lib-2009-05/0316.html
2009-06-08- Triggered by bug report #2798852 and the patch in there, I fixed configureDaniel Stenberg
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.
2009-06-08fix compiler warning: signed and unsigned type in conditional expressionYang Tse
2009-06-08mention last changesYang Tse
2009-06-08mention last changesYang Tse
2009-06-08Igor Novoseltsev provided docs\INSTALL VxWorks sectionYang Tse
2009-06-08Igor Novoseltsev adjusted Makefile.vxworks to get sources and headersYang Tse
included from Makefile.inc
2009-06-08Use curl_off_t and CURL_FORMAT_CURL_OFF_T for file size.Yang Tse