aboutsummaryrefslogtreecommitdiff
path: root/include
AgeCommit message (Collapse)Author
2010-02-10Mention the minimum size of CURL_MAX_WRITE_SIZEDan Fandrich
2010-02-09start working on 7.20.1Daniel Stenberg
2010-02-02- Symbol CURL_FORMAT_OFF_T now obsoleted, will be removed in a future release,Yang Tse
symbol will not be available when building with CURL_NO_OLDIES defined. Use of CURL_FORMAT_CURL_OFF_T is preferred since 7.19.0
2010-01-22s/RTPFUNCTION/INTERLEAVEFUNCTION/Daniel Stenberg
s/RTPDATA/INTERLEAVEDATA/
2010-01-21remove typedef we ended up not usingDaniel Stenberg
2010-01-21Chris Conroy brought support for RTSP transfers, and with it comes 8(!) newDaniel Stenberg
libcurl options for controlling what to get and how to receive posssibly interleaved RTP data. Initial commit.
2010-01-21Julien Chaffraix removed an old obsolete typedefDaniel Stenberg
2010-01-01update copyright year since we are in 2010 nowDaniel Stenberg
2010-01-01- Ingmar Runge enhanced libcurl's FTP engine to support the PRET command. ThisDaniel Stenberg
command is a special "hack" used by the drftpd server, but even though it is a custom extension I've deemed it fine to add to libcurl since this server seems to survive and people keep using it and want libcurl to support it. The new libcurl option is named CURLOPT_FTP_USE_PRET, and it is also usable from the curl tool with --ftp-pret. Using this option on a server that doesn't support this command will make libcurl fail.
2009-12-30VMS specific preprocessor symbol checking adjustmentsYang Tse
2009-12-27Adjust FreeBSD version check to follow FreeBSD Porter's HandbookYang Tse
http://www.freebsd.org/doc/en/books/porters-handbook/porting-versions.html
2009-12-25- Renato Botelho and Peter Pentchev brought a patch that makes the libcurlDaniel Stenberg
headers work correctly even on FreeBSD systems before v8.
2009-12-12introducing IMAP, POP3 and SMTP support (still lots of polish left to do)Daniel Stenberg
2009-11-277.20.0 is the planned next version numberDaniel Stenberg
2009-11-05I removed leading 'curl' path on the 'curlbuild.h' include statement inYang Tse
curl.h, adjusting auto-makefiles include path, to enhance portability to OS's without an orthogonal directory tree structure such as OS/400.
2009-11-04start over towards 7.19.8Daniel Stenberg
2009-10-27Fix spellingYang Tse
2009-10-16Move commentYang Tse
2009-09-27- I introduced a maximum limit for received HTTP headers. It is controlled byDaniel Stenberg
the define CURL_MAX_HTTP_HEADER which is even exposed in the public header file to allow for users to fairly easy rebuild libcurl with a modified limit. The rationale for a fixed limit is that libcurl is realloc()ing a buffer to be able to put a full header into it, so that it can call the header callback with the entire header, but that also risk getting it into trouble if a server by mistake or willingly sends a header that is more or less without an end. The limit is set to 100K.
2009-09-01clarify: building outside of the source tree is not special for theDaniel Stenberg
test script
2009-08-31Added a warning comment about curlbuild.h inclusion leading path.Patrick Monnerat
2009-08-31added curl prefix for curlbuild.h back until we find a better solution;Gunter Knauf
it breaks almost all autobuilds.
2009-08-31removed curl prefix for curlbuild.h as Patrick suggested.Gunter Knauf
2009-08-12start over fresh again towards 7.19.7Daniel Stenberg
2009-08-11Fix definition of CURLOPT_SOCKS5_GSSAPI_SERVICE from LONG to OBJECTPOINTPatrick Monnerat
Fix OS400 makefile for tests to use the new Makefile.inc in libtest Update the OS400 wrappers and RPG binding according to the current CVS source state
2009-07-22- Added CURLOPT_SSH_KNOWNHOSTS, CURLOPT_SSH_KEYFUNCTION, CURLOPT_SSH_KEYDATA.Daniel Stenberg
They introduce known_host support for SSH keys to libcurl. See docs for details.
2009-07-15BUG: curl did not build with cmake with VS 2005 for two reasons, ws2tcpip.h ↵Bill Hoffman
requires winsock2.h to be included before it with that compiler, and wldap32 is not available with the default install of the compiler, so disable ldap support if that is not found
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-06ENH: add some cmake docs and fix build with socklen_tBill Hoffman
2009-06-04allow building libcurl for VxWorksYang Tse
2009-06-01John E. Malmberg's VMS specific clean-up for curl.hYang Tse
2009-05-30Allow compiling under AndroidDan Fandrich
2009-05-28Fixed a few comment typos (from the FreeBSD ports)Dan Fandrich
2009-05-18Update copyright year, to force CVS to update the $Id date string formatYang Tse
2009-05-18start climbing to 7.19.6Daniel Stenberg
2009-05-12fiX *__SOCKLEN_T definitions for remaining targetsYang Tse
2009-05-11fIX *__SOCKLEN_T definitions for SYMBIAN32 and VMS targetsYang Tse
2009-05-06fIX *__SOCKLEN_T definitions for OS400 and generic GCC targetsYang Tse
2009-05-04fIX *__SOCKLEN_T definitions for MVS and 370 targetsYang Tse
2009-05-04fIX *__SOCKLEN_T definitions for several Windows target tool-chainsYang Tse
2009-05-02This wasn't intended to be committed.Yang Tse
So, until fixed this will remain FIXME.
2009-05-02Use build-time configured curl_socklen_t instead of socklen_tYang Tse
2009-05-01David McCreedy's "TPF-platform specific changes to various files" patch ↵Yang Tse
follow-up
2009-05-01David McCreedy's "TPF-platform specific changes to various files" patchYang Tse
2009-04-29curl_socklen_t follow-upYang Tse
2009-04-28- Bug report #2709004 (http://curl.haxx.se/bug/view.cgi?id=2709004) by TimDaniel Stenberg
Chen pointed out how curl couldn't upload with resume when reading from a pipe. This ended up with the introduction of a new return code for the CURLOPT_SEEKFUNCTION callback that basically says that the seek failed but that libcurl may try to resolve the situation anyway. In our case this means libcurl will attempt to instead read that much data from the stream instead of seeking and that way curl can now upload with resume when data is read from a stream!
2009-04-26Initial step towards a configure time curl_socklen_t definitionYang Tse
2009-04-09Cleaned up the custom definition I added (replaced by CURL_STATICLIB)Benoit Neil
2009-04-08Added special define for tests that directly include libcurl sources.Benoit Neil
2009-04-08Sun compilers specific preprocessor block removed from curlbuild.h.distYang Tse