Searched refs:curl_easy_setopt (Results 101 - 109 of 109) sorted by relevance

12345

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/docs/examples/
H A Dfopen.c231 curl_easy_setopt(file->handle.curl, CURLOPT_URL, url);
232 curl_easy_setopt(file->handle.curl, CURLOPT_WRITEDATA, file);
233 curl_easy_setopt(file->handle.curl, CURLOPT_VERBOSE, 0L);
234 curl_easy_setopt(file->handle.curl, CURLOPT_WRITEFUNCTION, write_callback);
H A Drtsp.c61 if ((res = curl_easy_setopt((A), (B), (C))) != CURLE_OK) \
62 fprintf(stderr, "curl_easy_setopt(%s, %s, %s) failed: %d\n", \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/daemon/
H A Dremote.c1734 curl_easy_setopt( curl, CURLOPT_USERAGENT, MY_NAME "/" LONG_VERSION_STRING );
1735 curl_easy_setopt( curl, CURLOPT_WRITEFUNCTION, writeFunc );
1736 curl_easy_setopt( curl, CURLOPT_WRITEDATA, writebuf );
1737 curl_easy_setopt( curl, CURLOPT_HEADERFUNCTION, parseResponseHeader );
1738 curl_easy_setopt( curl, CURLOPT_POST, 1 );
1739 curl_easy_setopt( curl, CURLOPT_NETRC, CURL_NETRC_OPTIONAL );
1740 curl_easy_setopt( curl, CURLOPT_HTTPAUTH, CURLAUTH_ANY );
1741 curl_easy_setopt( curl, CURLOPT_VERBOSE, debug );
1742 curl_easy_setopt( curl, CURLOPT_ENCODING, "" ); /* "" tells curl to fill in the blanks with what it was compiled to support */
1744 curl_easy_setopt( cur
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/tests/libtest/
H A Dtest.h44 if((res = curl_easy_setopt((A),(B),(C))) != CURLE_OK) goto test_cleanup
165 if((ec = curl_easy_setopt((A),(B),(C))) != CURLE_OK) { \
166 fprintf(stderr, "%s:%d curl_easy_setopt() failed, " \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/docs/libcurl/
H A DMakefile.in370 curl_easy_perform.3 curl_easy_setopt.3 curl_easy_duphandle.3 \
388 curl_easy_init.html curl_easy_perform.html curl_easy_setopt.html \
408 curl_easy_init.pdf curl_easy_perform.pdf curl_easy_setopt.pdf \
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/lib/
H A Deasy.c380 * curl_easy_setopt() is the external interface for setting options on an
384 #undef curl_easy_setopt macro
385 CURLcode curl_easy_setopt(CURL *curl, CURLoption tag, ...) function
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/include/curl/
H A Dtypecheck-gcc.h25 /* wraps curl_easy_setopt() with typechecking */
41 #define curl_easy_setopt(handle, option, value) \ macro
106 curl_easy_setopt(handle, _curl_opt, value); \
149 "curl_easy_setopt expects a long argument for this option")
151 "curl_easy_setopt expects a curl_off_t argument for this option")
153 "curl_easy_setopt expects a "
157 "curl_easy_setopt expects a curl_write_callback argument for this option")
159 "curl_easy_setopt expects a curl_read_callback argument for this option")
161 "curl_easy_setopt expects a curl_ioctl_callback argument for this option")
163 "curl_easy_setopt expect
[all...]
H A Dcurl.h495 callbacks using curl_easy_setopt options
813 * curl_easy_setopt(). The first argument in the CINIT() macro is the [what]
2299 #define curl_easy_setopt(handle,opt,param) curl_easy_setopt(handle,opt,param) macro
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/curl/curl-7.36.0/packages/OS400/
H A Dccsidcurl.c1198 result = curl_easy_setopt(curl, tag, s);
1215 result = curl_easy_setopt(curl, CURLOPT_COPYPOSTFIELDS, s);
1261 result = curl_easy_setopt(curl, CURLOPT_POSTFIELDS, s);

Completed in 75 milliseconds

12345