Lines Matching full:curl
14 * are also available at http://curl.haxx.se/docs/copyright.html.
29 CURL_EXTERN CURL *curl_easy_init(void);
30 CURL_EXTERN CURLcode curl_easy_setopt(CURL *curl, CURLoption option, ...);
31 CURL_EXTERN CURLcode curl_easy_perform(CURL *curl);
32 CURL_EXTERN void curl_easy_cleanup(CURL *curl);
39 * Request internal information from the curl session with this function. The
47 CURL_EXTERN CURLcode curl_easy_getinfo(CURL *curl, CURLINFO info, ...);
55 * Creates a new curl session handle with the same options set for the handle
62 CURL_EXTERN CURL* curl_easy_duphandle(CURL *curl);
69 * Re-initializes a CURL handle to the default values. This puts back the
75 CURL_EXTERN void curl_easy_reset(CURL *curl);
85 CURL_EXTERN CURLcode curl_easy_recv(CURL *curl, void *buffer, size_t buflen,
96 CURL_EXTERN CURLcode curl_easy_send(CURL *curl, const void *buffer,