Age | Commit message (Collapse) | Author | |
---|---|---|---|
2009-06-17 | socket() and closesocket() prototypes might be in socket.h | Yang Tse | |
2009-06-17 | check for socket() and closesocket() as it is done for other functions | Yang Tse | |
2009-06-17 | Added a few more compiler warning options for gcc. | Dan Fandrich | |
2009-06-16 | - Reuven Wachtfogel made curl -o - properly produce a binary output on windows | Daniel Stenberg | |
(no newline translations). Use -B/--use-ascii if you rather get the ascii approach. | |||
2009-06-16 | - When doing non-anonymous ftp via http proxies and the password is not | Michal Marek | |
provided in the url, add it there (squid needs this). | |||
2009-06-16 | fix compiler warning | Yang Tse | |
2009-06-15 | fixed 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-15 | curl_multi_socket_action() is the one to use nowadays, as Mohun Biswas | Daniel Stenberg | |
pointed out! | |||
2009-06-15 | Replaced use of standard C library rand()/srand() by our own pseudo-random ↵ | Patrick Monnerat | |
number generator. | |||
2009-06-15 | DEBUGBUILD / CURLDEBUG decoupling follow-up | Yang Tse | |
2009-06-15 | DEBUGBUILD / CURLDEBUG decoupling follow-up | Yang Tse | |
2009-06-13 | Remove HAVE_CONFIG_H definition from here, | Yang Tse | |
CFLAGS from common.dj already defines it. | |||
2009-06-13 | add default USE_CURLDEBUG setting | Yang Tse | |
2009-06-13 | initial step towards decoupling c-ares from libcurl for DOS | Yang Tse | |
2009-06-13 | improve usability with UNIX-like shells or a DOS command interpreters | Yang Tse | |
2009-06-13 | don't ignore these subdirs, they must be removed first | Yang Tse | |
2009-06-13 | Remove DEBUGBUILD symbol definition, is not required for programs using the ↵ | Yang Tse | |
library. | |||
2009-06-13 | DEBUGBUILD symbol definition for debug builds | Yang Tse | |
2009-06-13 | ignore some subdirs | Yang Tse | |
2009-06-13 | fix comment | Yang Tse | |
2009-06-12 | Try to make more clear that --enable-curldebug has nothing to do with ↵ | Yang Tse | |
--enable-debug for this library. | |||
2009-06-12 | Revert last change, it is inappropriate. | Yang Tse | |
2009-06-12 | Replace CURLDEBUG with DEBUGBUILD. | Gisle Vanem | |
2009-06-12 | fix compiler warning | Yang Tse | |
2009-06-12 | Fixed to take in account the different interpretation of double | Yang Tse | |
quootes on UNIX-like shells vs DOS-like command interpreters. | |||
2009-06-12 | include <limits.h> for INT_MAX definition | Yang Tse | |
2009-06-12 | fix compiler warning | Yang Tse | |
2009-06-11 | fix compiler warning | Yang Tse | |
2009-06-11 | when running automake copy missing files instead of symlinking them | Yang Tse | |
2009-06-11 | DOS adjustments | Yang Tse | |
2009-06-11 | added header inclusion guard | Yang Tse | |
2009-06-11 | mention configure --enable-curldebug decoupled from --enable-debug | Yang Tse | |
2009-06-11 | changed testcurl script to allow building test harness | Yang 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 and | Daniel Stenberg | |
contributed a range of patches to fix them. | |||
2009-06-10 | extended the CURLOPT_HEADERFUNCTION description with Aaron Oneal's help | Daniel Stenberg | |
2009-06-10 | VMS adjustments | Yang Tse | |
2009-06-10 | ENH: extract version from curlver.h | Bill Hoffman | |
2009-06-10 | VMS adjustment | Yang Tse | |
2009-06-10 | fix language in comment | Yang Tse | |
2009-06-10 | TrackMemory is another feature not supported by curl-config | Yang Tse | |
2009-06-10 | Adjusted 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-09 | Added --enable-curldebug configure option to enable and disable building | Yang Tse | |
with the low-level curl debug memory tracking 'feature' to allow decoupled setting from --enable-debug. | |||
2009-06-09 | c-ares' --enable-debug --enable-curldebug decoupling follow-up | Yang Tse | |
2009-06-09 | ENH: lower case cmake functions and remove tabs and re-indent cmake code | Bill Hoffman | |
2009-06-09 | providing two more answers | Daniel Stenberg | |
2009-06-09 | initialize fread callback pointer to avoid compiler warning | Yang Tse | |
2009-06-09 | fix compiler warning | Yang Tse | |
2009-06-08 | - Claes Jakobsson provided a patch for libcurl-NSS that fixed a bad refcount | Daniel 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 configure | Daniel 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. |