summaryrefslogtreecommitdiff
path: root/docs/libcurl/curl_easy_send.3
Commit message (Collapse)AuthorAgeFilesLines
* curl_easy_recv: Improve documentation and example programMichael Kaufmann2016-12-181-8/+15
| | | | | | | | | | | Follow-up to 82245ea: Fix the example program sendrecv.c (handle CURLE_AGAIN, handle incomplete send). Improve the documentation for curl_easy_recv() and curl_easy_send(). Reviewed-by: Frank Meier Assisted-by: Jay Satiro See https://github.com/curl/curl/pull/1134
* docs: unified man page references to use \fIDaniel Stenberg2016-05-021-3/+3
|
* URLs: change all http:// URLs to https://Daniel Stenberg2016-02-031-1/+1
|
* curl_easy_send.3: CURLINFO_LASTSOCKET => CURLINFO_ACTIVESOCKETSvyatoslav Mishyn2015-10-081-1/+1
|
* curl_easy_recv/send: make them work with the multi interfaceYamada Yasuharu2015-03-231-3/+4
| | | | | By making sure Curl_getconnectinfo() uses the correct connection cache to find the last connection.
* lib man pages: update easy setopt option referencesDaniel Stenberg2014-06-211-2/+2
| | | | | ... by using the "\fIopt(3)\fP" syntax they will be linked properly when the web version of the page is generated.
* curl_easy_send.3: document return codesDaniel Stenberg2013-01-191-1/+4
| | | | | Reported by: Craig Davison Bug: http://curl.haxx.se/mail/lib-2013-01/0234.html
* remove the CVSish $Id$ linesDaniel Stenberg2010-03-241-1/+0
|
* removed trailing whitespaceYang Tse2010-02-141-2/+2
|
* - Introducing curl_easy_send() and curl_easy_recv(). They can be used to sendDaniel Stenberg2008-05-121-0/+65
and receive data over a connection previously setup with curl_easy_perform() and its CURLOPT_CONNECT_ONLY option. The sendrecv.c example was added to show how they can be used.