Sortix 1.1dev ports manual
This manual documents Sortix 1.1dev ports. You can instead view this document in the latest official manual.
curl_easy_recv(3) | libcurl Manual | curl_easy_recv(3) |
NAME
curl_easy_recv - receives raw data on an "easy" connectionSYNOPSIS
#include <curl/easy.h>DESCRIPTION
This function receives raw data from the established connection. You may use it together with curl_easy_send(3) to implement custom protocols using libcurl. This functionality can be particularly useful if you use proxies and/or SSL encryption: libcurl will take care of proxy negotiation and connection set-up.AVAILABILITY
Added in 7.18.2.RETURN VALUE
On success, returns CURLE_OK, stores the received data into buffer, and the number of bytes it actually read into *n.EXAMPLE
See sendrecv.c in docs/examples directory for usage example.SEE ALSO
curl_easy_setopt(3), curl_easy_perform(3), curl_easy_getinfo(3), curl_easy_send(3)December 18, 2016 | libcurl 7.69.0 |