Home | History | Annotate | Download | only in curl

Lines Matching refs:CURL

14  * are also available at https://curl.haxx.se/docs/copyright.html.
28 CURL_EXTERN CURL *curl_easy_init(void);
29 CURL_EXTERN CURLcode curl_easy_setopt(CURL *curl, CURLoption option, ...);
30 CURL_EXTERN CURLcode curl_easy_perform(CURL *curl);
31 CURL_EXTERN void curl_easy_cleanup(CURL *curl);
38 * Request internal information from the curl session with this function. The
46 CURL_EXTERN CURLcode curl_easy_getinfo(CURL *curl, CURLINFO info, ...);
54 * Creates a new curl session handle with the same options set for the handle
61 CURL_EXTERN CURL* curl_easy_duphandle(CURL *curl);
68 * Re-initializes a CURL handle to the default values. This puts back the
74 CURL_EXTERN void curl_easy_reset(CURL *curl);
84 CURL_EXTERN CURLcode curl_easy_recv(CURL *curl, void *buffer, size_t buflen,
95 CURL_EXTERN CURLcode curl_easy_send(CURL *curl, const void *buffer,