curl_easy_recv (3) Linux Manual Page
NAME curl_easy_recv – receives raw data on an "easy" connection SYNOPSIS #include <curl/easy.h> CURLcode curl_easy_recv( CURL *curl, void *buffer, size_t buflen, size_t *n); 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…
