summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* remove all .cvsignore filesDaniel Stenberg2010-03-253-40/+0
|
* Fix RTSP GET_PARAMETER empty and non-empty operation.Chris Conroy2010-03-241-1/+3
| | | | Test coverage included. Thanks to Massimo Callegari for the bug report
* remove the CVSish $Id$ linesDaniel Stenberg2010-03-24103-103/+0
|
* various changes of CVS to gitDaniel Stenberg2010-03-224-25/+28
|
* Julien Chaffraix clarified CURLOPT_HEADERFUNCTION and madeDaniel Stenberg2010-03-041-4/+4
| | | | CURLOPT_HEADERFUNCTION and CURLOPT_WRITEFUNCTION more consistent
* spellchecked by Stéphane FillodDaniel Stenberg2010-02-261-1/+1
|
* - Proper handling of STARTTLS on SMTP, taking CURLUSESSL_TRY into account.Patrick Monnerat2010-02-221-0/+3
| | | | | | - SMTP falls back to RFC821 HELO when EHLO fails (and SSL is not required). - Use of true local host name (i.e.: via gethostname()) when available, as default argument to SMTP HELO/EHLO. - Test case 804 for HELO fallback.
* clarify more details on section "2.1 More non-blocking"Daniel Stenberg2010-02-211-1/+12
|
* TFTP transfers are not blocking since 7.20.0Daniel Stenberg2010-02-211-2/+1
|
* - Fixed the SMTP compliance by making sure RCPT TO addresses are specifiedDaniel Stenberg2010-02-201-0/+4
| | | | | | | properly in angle brackets. Recipients provided with CURLOPT_MAIL_RCPT now get angle bracket wrapping automatically by libcurl unless the recipient starts with an angle bracket as then the app is assumed to deal with that properly on its own.
* replaced tabs with spacesYang Tse2010-02-166-136/+136
|
* -w speed_download and speed_upload are measured in bytes per secondDaniel Stenberg2010-02-151-2/+4
|
* 75. NTLM authentication involving unicode user name or password.Daniel Stenberg2010-02-141-0/+4
| | | | | http://curl.haxx.se/mail/lib-2009-10/0024.html http://curl.haxx.se/bug/view.cgi?id=2944325
* removed trailing whitespaceYang Tse2010-02-1440-145/+145
|
* - Martin Hager reported and fixed a problem with a missing quote in libcurl.m4Daniel Stenberg2010-02-131-1/+1
| | | | (http://curl.haxx.se/bug/view.cgi?id=2951319)
* more symbols added in 7.20.0Daniel Stenberg2010-02-031-0/+12
|
* mention SOCKS related problems in the curl(1) man pageKamil Dudka2010-02-021-0/+2
|
* We introduce a loop in lib/multi.c around all calls to multi_runsingle() andDaniel Stenberg2010-02-012-26/+24
| | | | | | simply check for CURLM_CALL_MULTI_PERFORM internally. This has the added benefit that this goes in line with my long-term wishes to get rid of the CURLM_CALL_MULTI_PERFORM all together from the public API.
* Known bug #64 fixed by Constantine Sapuntzakis and Joshua Kwan in 7.20.0Yang Tse2010-01-281-5/+0
|
* Chris Conroy's RTSP followup fixesYang Tse2010-01-281-6/+2
|
* no need to take precautiono for how things were before 7.16.0 since thatDaniel Stenberg2010-01-261-8/+4
| | | | is now a very long time ago
* Updated minimum library sizesDan Fandrich2010-01-251-3/+3
|
* Added -J/--remote-header-name.Bjorn Stenberg2010-01-231-0/+3
|
* "remove progress meter from libcurl" at next API breakDaniel Stenberg2010-01-231-0/+11
|
* cleanups by Julien ChaffraixDaniel Stenberg2010-01-222-10/+9
|
* expanded to provide info about the newer protocols tooDaniel Stenberg2010-01-221-2/+11
|
* s/RTPFUNCTION/INTERLEAVEFUNCTION/Daniel Stenberg2010-01-221-3/+3
| | | | s/RTPDATA/INTERLEAVEDATA/
* keep lines shorter than 80 columns, and reduce/remove the use of the wordDaniel Stenberg2010-01-221-64/+63
| | | | 'note' in most description as it is mostly useless.
* Chris Conroy brought support for RTSP transfers, and with it comes 8(!) newDaniel Stenberg2010-01-213-6/+164
| | | | | libcurl options for controlling what to get and how to receive posssibly interleaved RTP data. Initial commit.
* Yun Fu pointed out a flaw in the loop that checks handles, and I indentedDaniel Stenberg2010-01-211-14/+17
| | | | the code more curl-style
* "5.3 Sort outgoing cookies" removed, we now sort themDaniel Stenberg2010-01-211-10/+2
|
* Julien Chaffraix fixed so that the fragment part in an URL is not sent to ↵Claes Jakobsson2010-01-061-0/+3
| | | | the server anymore
* use the modern name for this optionDaniel Stenberg2010-01-041-1/+1
|
* - Julien Chaffraix eliminated a duplicated initialization in singlesocket().Kamil Dudka2010-01-031-0/+1
|
* - Make curl support --ssl and --ssl-reqd instead of the previous FTP-specificDaniel Stenberg2010-01-021-10/+15
| | | | | | | versions --ftp-ssl and --ftp-ssl-reqd as these options are now used to control SSL/TLS for IMAP, POP3 and SMTP as well in addition to FTP. The old option names are still working but the new ones are the prefered ones (listed and documented).
* update copyright year since we are in 2010 nowDaniel Stenberg2010-01-012-12/+12
|
* added CURLOPT_FTP_USE_PRETDaniel Stenberg2010-01-011-0/+1
|
* - Ingmar Runge enhanced libcurl's FTP engine to support the PRET command. ThisDaniel Stenberg2010-01-013-0/+15
| | | | | | | | | 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.
* added descriptions for CURLOPT_MAIL_FROM and CURLOPT_MAIL_RCPTDaniel Stenberg2009-12-311-0/+13
|
* --mail-rcpt and --mail-from are starting to settle and work like this...Daniel Stenberg2009-12-311-0/+8
|
* CURLOPT_HEADERDATA was added in 7.10Daniel Stenberg2009-12-301-0/+1
|
* Julien Chaffraix's clarificationsDaniel Stenberg2009-12-271-2/+7
|
* symbols added in the CVS version meant for 7.20.0Daniel Stenberg2009-12-261-0/+8
|
* - Siegfried Gyuricsko found out that the curl manual said --retry would retryDaniel Stenberg2009-12-101-1/+1
| | | | | | | | | on FTP errors in the transient 5xx range. Transient FTP errors are in the 4xx range. The code itself only tried on 5xx errors that occured _at login_. Now the retry code retries on all FTP transfer failures that ended with a 4xx response. (http://curl.haxx.se/bug/view.cgi?id=2911279)
* 74. The HTTP spec allows headers to be merged and become comma-separatedDaniel Stenberg2009-12-041-0/+6
| | | | | | | instead of being repeated several times. This also include Authenticate: and Proxy-Authenticate: headers and while this hardly every happens in real life it will confuse libcurl which does not properly support it for all headers - like those Authenticate headers.
* #71 "TFTP block size / better integration in transfer" is now expected toDaniel Stenberg2009-11-291-6/+0
| | | | have been fixed!
* a binding for FalconDaniel Stenberg2009-11-291-0/+4
|
* document --tftp-blksizeDaniel Stenberg2009-11-271-1/+9
|
* clarify what a modern version of libcurl meansDaniel Stenberg2009-11-241-6/+6
|
* fixed CURLOPT_TFTP_BLKSIZE typoDaniel Stenberg2009-11-231-1/+1
|