summaryrefslogtreecommitdiff
path: root/docs
Commit message (Collapse)AuthorAgeFilesLines
* libcurl-share.3: update what it does and does not share.David Strauss2013-04-121-2/+4
| | | | | Update sharing interface documentation to provide exhaustive list of what it does and does not share.
* THANKS: remove duplicated namesDaniel Stenberg2013-04-121-3/+0
|
* THANKS: added people from the 7.30.0 RELEASE-NOTESDaniel Stenberg2013-04-121-1/+24
|
* curl_global_init.3: improve description of CURL_GLOBAL_ALLKamil Dudka2013-04-051-1/+2
| | | | Reported by: Tomas Mlcoch
* examples/multi-single.c: fix the order of destructionsKamil Dudka2013-04-051-1/+7
| | | | | | ... so that it adheres to the API documentation. Reported by: Tomas Mlcoch
* curl_easy_setopt.3: CURLOPT_HTTPGET disables CURLOPT_UPLOADDaniel Stenberg2013-04-031-1/+1
|
* Added dns and connect time to output.Guenter Knauf2013-04-011-1/+15
|
* BINDINGS: BBHTTP is a cocoa binding, Julia has a bindingDaniel Stenberg2013-03-301-1/+10
|
* multi-uv.c: remove unused variableClemens Gruber2013-03-271-2/+1
|
* Added libuv example multi-uv.cClemens Gruber2013-03-273-1/+216
|
* FEATURES: Small tidy up for constancy and grammarSteve Holme2013-03-181-14/+16
|
* TODO: Reordered the protocol and security sectionsSteve Holme2013-03-181-119/+117
| | | | | | | | | Moved SMTP, POP3, IMAP and New Protocol sections to be listed after the other protocols (FTP, HTTP and TELNET) and SASL to be after SSL and GnuTLS as these are all security related. Additionally fixed numbering of the SSL and GnuTLS sections as they weren't consecutive.
* FEATURES: Expanded the supported enhanced IMAP command listSteve Holme2013-03-161-1/+2
|
* TODO: Corrected typo in TOCSteve Holme2013-03-161-4/+2
|
* TODO: Added IMAP section and removed unused Other protocols sectionSteve Holme2013-03-161-8/+22
|
* TODO: Added graceful base64 decoding failure to SMTP and POP3Steve Holme2013-03-161-0/+16
|
* TODO: Corrected typo on section 10.2 headingSteve Holme2013-03-161-1/+1
|
* TODO: Added section 10.2 Initial response to POP3 to do listSteve Holme2013-03-151-0/+6
|
* Multiple pipelines and limiting the number of connections.Linus Nielsen Feltzing2013-03-133-0/+117
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Introducing a number of options to the multi interface that allows for multiple pipelines to the same host, in order to optimize the balance between the penalty for opening new connections and the potential pipelining latency. Two new options for limiting the number of connections: CURLMOPT_MAX_HOST_CONNECTIONS - Limits the number of running connections to the same host. When adding a handle that exceeds this limit, that handle will be put in a pending state until another handle is finished, so we can reuse the connection. CURLMOPT_MAX_TOTAL_CONNECTIONS - Limits the number of connections in total. When adding a handle that exceeds this limit, that handle will be put in a pending state until another handle is finished. The free connection will then be reused, if possible, or closed if the pending handle can't reuse it. Several new options for pipelining: CURLMOPT_MAX_PIPELINE_LENGTH - Limits the pipeling length. If a pipeline is "full" when a connection is to be reused, a new connection will be opened if the CURLMOPT_MAX_xxx_CONNECTIONS limits allow it. If not, the handle will be put in a pending state until a connection is ready (either free or a pipe got shorter). CURLMOPT_CONTENT_LENGTH_PENALTY_SIZE - A pipelined connection will not be reused if it is currently processing a transfer with a content length that is larger than this. CURLMOPT_CHUNK_LENGTH_PENALTY_SIZE - A pipelined connection will not be reused if it is currently processing a chunk larger than this. CURLMOPT_PIPELINING_SITE_BL - A blacklist of hosts that don't allow pipelining. CURLMOPT_PIPELINING_SERVER_BL - A blacklist of server types that don't allow pipelining. See the curl_multi_setopt() man page for details.
* OS400: synchronize RPG bindingPatrick Monnerat2013-03-121-2/+2
|
* curl_global_init: accept the CURL_GLOBAL_ACK_EINTR flagZdenek Pavlas2013-03-122-0/+5
| | | | | | | | | The flag can be used in pycurl-based applications where using the multi interface would not be acceptable because of the performance lost caused by implementing the select() loop in python. Bug: http://curl.haxx.se/bug/view.cgi?id=1168 Downstream Bug: https://bugzilla.redhat.com/919127
* curl.h: stricter CURL_EXTERN linkage decorations logicYang Tse2013-03-121-1/+0
| | | | | | No API change involved. Info: http://curl.haxx.se/mail/lib-2013-02/0234.html
* THANKS: Latin-1'ified Jiri's nameDaniel Stenberg2013-03-111-1/+1
|
* hiperfifo: updated to use current libevent APIDaniel Stenberg2013-03-101-24/+42
| | | | Patch by: Myk Taylor
* examples/getinmemory.c: abort the transfer if not enough memoryCédric Deltheil2013-03-091-16/+24
| | | | | | No more use exit(3) but instead tell libcurl that no byte has been written to let it return a `CURLE_WRITE_ERROR`. In addition, check curl easy handle return code.
* DOCS: Corrected the IMAP URL grammar of the UIDVALIDITY parameterSteve Holme2013-03-071-1/+1
|
* FEATURES: Provided a little clarity in some IMAP featuresSteve Holme2013-03-071-2/+2
|
* DOCS: Added the list command to the IMAP URL sectionSteve Holme2013-03-071-14/+14
| | | | | Added examples of the list command and clarified existing example URLs following recent changes.
* FEATURES: Updated for recent imap additionsSteve Holme2013-03-071-4/+8
| | | | | Updated the imap features list, corrected a typo in the smtp features and clarified a pop3 feature.
* DOCS: Added the IMAP UIDVALIDITY property to the CURLOPT_URL sectionSteve Holme2013-02-261-4/+8
|
* DOCS: Corrected IMAP URL examples according to RFC5092Steve Holme2013-02-251-2/+2
| | | | | URL examples that included the UID weren't technically correct although would pass the curl parser.
* DOCS: Corrected layout of POP3 and IMAP URL examplesSteve Holme2013-02-241-0/+4
| | | | | Corrected layout issues with the POP3 and IMAP URL examples introduced in commit cb3ae6894fb2.
* DOCS: Updated CURLOPT_URL section following recent POP3 and IMAP changesSteve Holme2013-02-231-6/+25
| | | | | | | Updated the POP3 sub-section to refer to message ID rather than mailbox. Added an IMAP sub-section with example URLs depicting the specification of mailbox, uid and section.
* FEATURES: Updated following recent IMAP changesSteve Holme2013-02-231-1/+1
|
* Documentation: Typo in docs/CONTRIBUTEAlexander Klauer2013-02-221-1/+1
| | | | Fixes a typo get → git in docs/CONTRIBUTE.
* libcurl documentation: clarifications and typosAlexander Klauer2013-02-226-24/+47
| | | | | | | | | | | | | * Elaborates on default values of some curl_easy_setopt() options. * Reminds the user to cast variadic arguments to curl_easy_setopt() to 'void *' where curl internally interprets them as such. * Clarifies the working of the CURLOPT_SEEKFUNCTION option for curl_easy_setopt(). * Fixes typo 'forth' → 'fourth'. * Elaborates on CURL_SOCKET_TIMEOUT. * Adds some missing periods. * Notes that the return value of curl_version() must not be passed to free().
* libcurl documentation: updates HTML indexAlexander Klauer2013-02-221-6/+15
| | | | | | | * Adds several links to documentation of library functions which were missing. * Marks documentation of deprecated library functions "(deprecated)". * Removes spurious .html suffixes.
* FEATURES: why yes, we do support metalinkNick Zitzmann2013-02-191-0/+3
| | | | I just noticed Metalink support wasn't listed as a feature of the tool.
* docs: schannel and darwinssl documentation improvementsNick Zitzmann2013-02-182-16/+42
| | | | | Schannel and darwinssl use the certificates built into the OS to do vert verification instead of bundles. darwinssl is thread-safe. Corrected typos in the NSS docs.
* docs: refer to CURLOPT_ACCEPT_ENCODING instead of the old nameDaniel Stenberg2013-02-171-3/+3
|
* Guile-curl: a new libcurl bindingDaniel Stenberg2013-02-161-6/+11
|
* move msvc IDE related files to 'vs' directory treeYang Tse2013-02-131-4/+4
| | | | | Use 'vs' directory tree given that 'vc' intended one clashes with an already existing build target in file Makefile.dist.
* htmltitle: fix suggested build commandAlessandro Ghedini2013-02-101-1/+1
|
* Updated dependency libs.Guenter Knauf2013-02-093-4/+4
|
* FAQ: refreshed some phrasesDaniel Stenberg2013-02-081-20/+19
|
* Revert "vc: remove explicit MSVC6 IDE project file and documentation"Daniel Stenberg2013-02-071-0/+31
| | | | This reverts commit 0e66d5878edc3d7ffc445116d194b58bbc7504b9.
* vc: remove explicit MSVC6 IDE project file and documentationDaniel Stenberg2013-02-061-31/+0
| | | | | | VC6 is _very_ old and we provide working makefiles even for that compiler. Users who build with the IDE never use that method and project file anyway and it was just lingering in the root dir.
* build: move Android.mk to packages/Android/Daniel Stenberg2013-02-061-1/+1
|
* FEATURES: More NTLM and SSL changes, added two others, fixed typoNick Zitzmann2013-02-061-4/+12
| | | | | | | | | | Added IDN and HTTP data compression as they were left out of the document until now. Added notes for qssl, schannel and Secure Transport supporting SSLv2, Secure Transport supports NTLM, and axTLS does not support SSLv3. There was also a typo; "AUTH TSL" should be "AUTH TLS".
* THANKS: 12 contributors from 7.29.0Daniel Stenberg2013-02-061-0/+12
|