summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright year.Gisle Vanem2006-11-071-1/+1
|
* update copyright yearYang Tse2006-11-031-1/+1
|
* Change 'FILETYPE' to ' VFT_APP'.Gisle Vanem2006-10-311-6/+6
|
* Since now src/setup.h includes setup_once.h, src/config-win32.h needsYang Tse2006-10-201-0/+39
| | | | | the definitions for the return type and arguments types of functions recv() and send().
* Here's an effort to avoid saying 'data not shown' in the debug parts when theDaniel Stenberg2006-10-191-15/+29
| | | | | data is actually shown on screen. Like when you do 'curl -v host' with data and debug info sent to the same terminal.
* Introduce symbol USE_WINSOCK which will be defined whenYang Tse2006-10-181-0/+17
| | | | using winsock or winsock2 API.
* Move definition of IS*() macros to setup_once.hYang Tse2006-10-181-10/+6
|
* Avoid typecasting a signed char to an int when using is*() functions, as thatDaniel Stenberg2006-10-173-23/+39
| | | | | | | | | could very well cause a negate number get passed in and thus cause reading outside of the array usually used for this purpose. We avoid this by using the uppercase macro versions introduced just now that does some extra crazy typecasts to avoid byte codes > 127 to cause negative int values.
* Define HAVE_STRUCT_TIMEVAL as appropriate for platforms that lack autotools ↵Yang Tse2006-10-145-0/+41
| | | | support
* The tagging of application/x-www-form-urlencoded POST body data sentDan Fandrich2006-10-131-3/+19
| | | | | | | to the CURLOPT_DEBUGFUNCTION callback has been fixed (it was erroneously included as part of the header). A message was also added to the command line tool to show when data is being sent, enabled when --verbose is used.
* the textual arraw for "Send SSL data" was the wrong wayDaniel Stenberg2006-10-121-1/+1
|
* Remove redundant __CYGWIN__ symbol checkYang Tse2006-10-111-3/+3
|
* kill trailing whitespaceDaniel Stenberg2006-10-091-3/+3
|
* updated for latest OpenSSL release.Gunter Knauf2006-10-061-1/+1
|
* Support for FTP third party transfers is now droppedDaniel Stenberg2006-09-301-52/+0
|
* --ftp-ssl-control requires SSL/TLS, it does not "try" itDaniel Stenberg2006-09-241-3/+3
|
* --ftp-alternative-to-user was missing in the help textDaniel Stenberg2006-09-231-0/+1
|
* Mike Protts added --ftp-ssl-control to make curl use FTP-SSL, but onlyDaniel Stenberg2006-09-231-4/+14
| | | | encrypt the control connection and use the data connection "plain".
* Fix error introduced in file version 1.369Yang Tse2006-09-131-0/+1
|
* Compiler warning fixYang Tse2006-09-121-2/+6
|
* - Fixed my breakage from earlier today so that doing curl_easy_cleanup() on aDaniel Stenberg2006-09-111-3/+15
| | | | | | | | | handle that is part of a multi handle first removes the handle from the stack. - Added CURLOPT_SSL_SESSIONID_CACHE and --no-sessionid to disable SSL session-ID re-use on demand since there obviously are broken servers out there that misbehave with session-IDs used.
* Minor portability fixes to get things running on UNICOS 9.0 on a Cray Y-MPDan Fandrich2006-08-161-1/+4
|
* fixed some web links.Gunter Knauf2006-08-091-3/+3
|
* Allow again proper compilation outside of the source treeYang Tse2006-08-071-2/+6
|
* Avoid redundant check. configure script takes care of not definingYang Tse2006-08-041-2/+4
| | | | | HAVE_WINDOWS_H, HAVE_WINSOCK_H, HAVE_WINSOCK2_H, neither HAVE_WS2TCPIP_H when __CYGWIN__ is defined.
* Provide definitions needed for macros sread() and swrite() in config file.Yang Tse2006-07-311-0/+13
|
* David McCreedy added --ftp-ssl-reqd which makes curl *require* SSL for bothDaniel Stenberg2006-07-261-1/+11
| | | | | control and data connection, as the existing --ftp-ssl option only requests it.
* Dan Nelson added the CURLOPT_FTP_ALTERNATIVE_TO_USER libcurl option and curlDaniel Stenberg2006-07-251-0/+8
| | | | | tool option named --ftp-alternative-to-user. It provides a mean to send a particular command if the normal USER/PASS approach fails.
* Simplify check for NEED_MALLOC_H, and make more explicit that NEED_MALLOC_H ↵Yang Tse2006-07-251-1/+1
| | | | shall be defined if <malloc.h> header file must be included even when including <stdlib.h>.
* Added CURL_VERSION_CONV feature string.Gisle Vanem2006-07-251-1/+2
|
* Changes to support building for eCos 1.3.1. This has been tested withDan Fandrich2006-07-191-1/+1
| | | | file: URLs only.
* Avoid variable declaration shadowing previously declared oneYang Tse2006-07-191-4/+4
|
* include <malloc.h> only if HAVE_MALLOC_H and NEED_MALLOC_H are both defined.Yang Tse2006-07-111-0/+3
|
* Moved strdup replacement from src/main.c into src/strdup.c so it's availableDan Fandrich2006-07-113-23/+10
| | | | in libcurl as well, if necessary.
* Prevent definition of HAVE_WINxxx_H symbols and avoid inclusion of Windows ↵Yang Tse2006-07-051-1/+1
| | | | headers when compiled with Cygwin in POSIX emulation mode.
* Peter Silva introduced CURLOPT_MAX_SEND_SPEED_LARGE andDaniel Stenberg2006-06-221-111/+9
| | | | | | | | | | CURLOPT_MAX_RECV_SPEED_LARGE that limit tha maximum rate libcurl is allowed to send or receive data. This kind of adds the the command line tool's option --limit-rate to the library. The rate limiting logic in the curl app is now removed and is instead provided by libcurl itself. Transfer rate limiting will now also work for -d and -F, which it didn't before.
* make -K on a bad file now displays a warningDaniel Stenberg2006-06-191-7/+12
|
* Brian Dessent's fixes for cygwin buildsDaniel Stenberg2006-06-082-4/+6
|
* --ftp-method was missing in the --help output, as mentioned by Manfred SchwarbDaniel Stenberg2006-04-251-0/+1
|
* removed -fpack-struct because gcc4 seems to know its obsolete and warns...Gunter Knauf2006-04-201-1/+1
|
* #1468330 (http://curl.haxx.se/bug/view.cgi?id=1468330) pointed out a badDaniel Stenberg2006-04-111-1/+3
| | | | | typecast in the curl tool leading to a crash with (64bit?) VS2005 (at least) since the struct timeval field tv_sec is an int while time_t is 64bit.
* CURLE_FTP_USER_PASSWORD_INCORRECT is not returned by libcurl anymore!Daniel Stenberg2006-04-091-2/+1
|
* First commit of David McCreedy's EBCDIC and TPF changes.Daniel Stenberg2006-04-072-4/+110
|
* minor re-arrange to return a value in order to avoid compiler warningsDaniel Stenberg2006-04-071-3/+5
| | | | | for not returning a value from a non-void function (even though the code never actually reached that point before)
* converted sprintf() to snprintf() to reduce riskDaniel Stenberg2006-03-281-11/+19
|
* David Byron found a problem multiple -d options when libcurl was built withDaniel Stenberg2006-03-271-1/+5
| | | | | | --enable-debug, as then curl used free() on memory allocated both with normal malloc() and with libcurl-provided functions, when the latter MUST be freed with curl_free() in debug builds.
* minor Makefile fix - let's go 2006;Gunter Knauf2006-03-271-3/+7
| | | | avoid kiling hugehelp.c when not built from CVS.
* David McCreedy added CURLINFO_FTP_ENTRY_PATH to export the FTP entry pathDaniel Stenberg2006-03-211-0/+9
|
* off-by-one for the case when it adds /? and a terminating zero to the URLDaniel Stenberg2006-03-201-1/+1
|
* use the new types accordinglyDaniel Stenberg2006-03-141-4/+4
|