/external/curl/packages/vms/ |
D | curlmsg.sdl | 10 /* THESE VMS ERROR CODES ARE GENERATED BY TAKING APART THE CURL.H 20 /* CURLE_ ONES IN INCLUDE/CURL.H. THE MESSAGE UTILITY MANUAL STATES 28 "FACILITY" EQUALS 3841 PREFIX "CURL" TAG "" 29 ,"OK" EQUALS %X0F018009 PREFIX "CURL" TAG "" 30 ,"UNSUPPORTED_PROTOCOL" EQUALS %X0F018012 PREFIX "CURL" TAG "" 31 ,"FAILED_INIT" EQUALS %X0F01801A PREFIX "CURL" TAG "" 32 ,"URL_MALFORMAT" EQUALS %X0F018022 PREFIX "CURL" TAG "" 33 ,"OBSOLETE4" EQUALS %X0F01802A PREFIX "CURL" TAG "" 34 ,"COULDNT_RESOLVE_PROXY" EQUALS %X0F018032 PREFIX "CURL" TAG "" 35 ,"COULDNT_RESOLVE_HOST" EQUALS %X0F01803A PREFIX "CURL" TAG "" [all …]
|
D | stage_curl_install.com | 5 $! This updates or removes the GNV$CURL.EXE and related files for the 9 $! [usr.bin]gnv$curl.exe 10 $! [usr.bin]curl-config. 12 $! [usr.bin]curl. hard link for [usr.bin]gnv$curl.exe 13 $! [usr.include.curl]curl.h 14 $! [usr.include.curl]curlver.h 15 $! [usr.include.curl]easy.h 16 $! [usr.include.curl]mprintf.h 17 $! [usr.include.curl]multi.h 18 $! [usr.include.curl]stdcheaders.h [all …]
|
/external/libbrillo/brillo/http/ |
D | curl_api.h | 8 #include <curl/curl.h> 25 virtual CURL* EasyInit() = 0; 28 virtual void EasyCleanup(CURL* curl) = 0; 31 virtual CURLcode EasySetOptInt(CURL* curl, CURLoption option, int value) = 0; 32 virtual CURLcode EasySetOptStr(CURL* curl, 35 virtual CURLcode EasySetOptPtr(CURL* curl, 38 virtual CURLcode EasySetOptCallback(CURL* curl, 41 virtual CURLcode EasySetOptOffT(CURL* curl, 47 inline CURLcode EasySetOptCallback(CURL* curl, in EasySetOptCallback() argument 51 curl, option, reinterpret_cast<intptr_t>(callback)); in EasySetOptCallback() [all …]
|
D | curl_api.cc | 18 "CURL option types are expected to be multiples of 10000"); 35 CURL* CurlApi::EasyInit() { in EasyInit() 39 void CurlApi::EasyCleanup(CURL* curl) { in EasyCleanup() argument 40 curl_easy_cleanup(curl); in EasyCleanup() 43 CURLcode CurlApi::EasySetOptInt(CURL* curl, CURLoption option, int value) { in EasySetOptInt() argument 46 // CURL actually uses "long" type, so have to make sure we feed it what it in EasySetOptInt() 49 return curl_easy_setopt(curl, option, static_cast<long>(value)); in EasySetOptInt() 52 CURLcode CurlApi::EasySetOptStr(CURL* curl, in EasySetOptStr() argument 57 return curl_easy_setopt(curl, option, value.c_str()); in EasySetOptStr() 60 CURLcode CurlApi::EasySetOptPtr(CURL* curl, CURLoption option, void* value) { in EasySetOptPtr() argument [all …]
|
/external/curl/ |
D | RELEASE-NOTES | 1 curl and libcurl 7.64.1 3 Public curl releases: 180 39 o curl.1: --user and --proxy-user are hidden from ps output [86] 40 o curl.1: mark the argument to --cookie as <data|filename> [87] 41 o curl.h: use __has_declspec_attribute for shared builds [52] 42 o curl: display --version features sorted alphabetically [51] 43 o curl: fix FreeBSD compiler warning in the --xattr code [2] 44 o curl: remove MANUAL from -M output [38] 62 o examples: only include <curl/curl.h> [70] 131 o zsh.pl: update regex to better match curl -h output [8] [all …]
|
/external/curl/docs/ |
D | FAQ | 10 1.1 What is cURL? 12 1.3 What is curl not? 13 1.4 When will you make curl do XXXX ? 14 1.5 Who makes curl? 15 1.6 What do you get for making curl? 16 1.7 What about CURL from curl.com? 18 1.9 Where do I buy commercial support for curl? 19 1.10 How many are using curl? 22 1.13 curl's ECCN number? 30 2.2 Does curl work/build with other SSL libraries? [all …]
|
D | KNOWN_BUGS | 50 5.2 curl-config --libs contains private details 51 5.3 curl compiled on OSX 10.13 failed to run on OSX 10.10 93 11.1 Curl leaks .onion hostnames in DNS 120 https://github.com/curl/curl/issues/608 125 heap corruption and crash. https://curl.haxx.se/bug/view.cgi?id=1411 128 https://github.com/curl/curl/issues/2101 137 https://github.com/curl/curl/issues/218 138 https://curl.haxx.se/bug/view.cgi?id=1213 153 https://curl.haxx.se/mail/archive-2008-02/0043.html 159 https://curl.haxx.se/mail/lib-2008-08/0462.html [all …]
|
D | TheArtOfHttpScripting | 8 The Art Of Scripting HTTP Requests Using Curl 77 Curl is a command line tool for doing all sorts of URL manipulations and 80 invoke 'curl --help' or 'curl --manual' to get basic information about it. 82 Curl is not written to do everything for you. It makes the requests, it gets 98 The client, curl, sends a HTTP request. The request contains a method (like 106 Using curl's option --verbose (-v as a short option) will display what kind 107 of commands curl sends to the server, as well as a few other informational 111 understand the curl<->server interaction. 114 even more details as they show EVERYTHING curl sends and receives. Use it 117 curl --trace-ascii debugdump.txt http://www.example.com/ [all …]
|
D | HISTORY.md | 1 How curl Became Like This 28 1998 curl 4 was released. (The version numbering from the previous names was 31 (Unrelated to this project a company called Curl Corporation registered a US 32 trademark on the name "CURL" on May 18 1998. That company had then already 33 registered the curl.com domain back in November of the previous year. All this 38 August: first announcement of curl on freshmeat.net. 40 October: with the curl 4.9 release and the introduction of cookie support, 41 curl was no longer released under the GPL license. Now we're at 4000 lines of 47 curl could now simulate quite a lot of a browser. TELNET support was added. 49 Curl 5 was released in December 1998 and introduced the first ever curl man [all …]
|
D | TODO | 9 Things to do in project curl. Please tell us what you think, contribute and 153 18.7 warning if curl version is not in sync with libcurl version 156 18.10 improve how curl works in a windows console window 205 See https://github.com/curl/curl/pull/3378 225 problem is available at https://curl.haxx.se/mail/lib-2008-09/0197.html 270 See https://github.com/curl/curl/issues/1264 284 https://github.com/curl/curl/pull/977 295 https://github.com/curl/curl/issues/349 305 https://github.com/curl/curl/issues/2251 309 curl will create most sockets via the CURLOPT_OPENSOCKETFUNCTION callback and [all …]
|
D | curl.1 | 12 .\" * are also available at https://curl.haxx.se/docs/copyright.html. 23 .\" DO NOT EDIT. Generated by the curl project gen.pl man page generator. 25 .TH curl 1 "November 16, 2016" "Curl 7.64.1" "Curl Manual" 28 curl \- transfer a URL 30 .B curl [options / URLs] 32 .B curl 38 curl offers a busload of useful tricks like proxy support, user 43 curl is powered by libcurl for all transfer-related features. See 88 If you specify URL without protocol:// prefix, curl will attempt to guess what 91 with "ftp." curl will assume you want to speak FTP. [all …]
|
/external/curl/src/ |
D | tool_operate.c | 12 * are also available at https://curl.haxx.se/docs/copyright.html. 83 CURLcode curl_easy_perform_ev(CURL *easy); 95 "More details here: https://curl.haxx.se/docs/sslcerts.html\n\n" \ 96 "curl failed to verify the legitimacy of the server and therefore " \ 203 CURL *curl = config->easy; in operate_do() local 235 /* On WIN32 we can't set the path to curl-ca-bundle.crt in operate_do() 263 * default filename curl-ca-bundle.crt in the user's PATH. in operate_do() 312 "curl-ca-bundle.crt"); in operate_do() 655 this_url = add_file_name_to_url(curl, this_url, uploadfile); in operate_do() 822 my_setopt(curl, CURLOPT_TCP_NODELAY, 0L); in operate_do() [all …]
|
/external/curl/docs/examples/ |
D | rtsp.c | 59 #include <curl/curl.h> 77 static void rtsp_options(CURL *curl, const char *uri) in rtsp_options() argument 81 my_curl_easy_setopt(curl, CURLOPT_RTSP_STREAM_URI, uri); in rtsp_options() 82 my_curl_easy_setopt(curl, CURLOPT_RTSP_REQUEST, (long)CURL_RTSPREQ_OPTIONS); in rtsp_options() 83 my_curl_easy_perform(curl); in rtsp_options() 88 static void rtsp_describe(CURL *curl, const char *uri, in rtsp_describe() argument 101 my_curl_easy_setopt(curl, CURLOPT_WRITEDATA, sdp_fp); in rtsp_describe() 102 my_curl_easy_setopt(curl, CURLOPT_RTSP_REQUEST, (long)CURL_RTSPREQ_DESCRIBE); in rtsp_describe() 103 my_curl_easy_perform(curl); in rtsp_describe() 104 my_curl_easy_setopt(curl, CURLOPT_WRITEDATA, stdout); in rtsp_describe() [all …]
|
D | cookie_interface.c | 12 * are also available at https://curl.haxx.se/docs/copyright.html. 33 #include <curl/curl.h> 36 print_cookies(CURL *curl) in print_cookies() argument 43 printf("Cookies, curl knows:\n"); in print_cookies() 44 res = curl_easy_getinfo(curl, CURLINFO_COOKIELIST, &cookies); in print_cookies() 46 fprintf(stderr, "Curl curl_easy_getinfo failed: %s\n", in print_cookies() 66 CURL *curl; in main() local 70 curl = curl_easy_init(); in main() 71 if(curl) { in main() 74 curl_easy_setopt(curl, CURLOPT_URL, "https://www.example.com/"); in main() [all …]
|
/external/curl/tests/libtest/ |
D | test1013.pl | 2 # Determine if curl-config --protocols/--features matches the 3 # curl --version protocols/features 6 print "Usage: $0 curl-config-script curl-version-output-file features|protocols\n"; 12 # Read the output of curl --version 14 open(CURL, "$ARGV[1]") || die "Can't get curl $what list\n"; 15 while( <CURL> ) 19 close CURL; 23 @curl = split / /,$1; 25 # These features are not supported by curl-config 26 @curl = grep(!/^(Debug|TrackMemory|Metalink|Largefile|CharConv)$/i, @curl); [all …]
|
D | lib1533.c | 12 * are also available at https://curl.haxx.se/docs/copyright.html. 35 CURL *easy_handle; 42 static void reset_data(struct cb_data *data, CURL *curl) in reset_data() argument 44 data->easy_handle = curl; in reset_data() 99 static int perform_and_check_connections(CURL *curl, const char *description, in perform_and_check_connections() argument 105 res = curl_easy_perform(curl); in perform_and_check_connections() 111 res = curl_easy_getinfo(curl, CURLINFO_NUM_CONNECTS, &connections); in perform_and_check_connections() 131 CURL *curl = NULL; in test() local 139 curl = curl_easy_init(); in test() 140 if(curl == NULL) { in test() [all …]
|
D | lib572.c | 12 * are also available at https://curl.haxx.se/docs/copyright.html. 45 CURL *curl; in test() local 58 curl = curl_easy_init(); in test() 59 if(!curl) { in test() 66 test_setopt(curl, CURLOPT_HEADERDATA, stdout); in test() 67 test_setopt(curl, CURLOPT_WRITEDATA, stdout); in test() 68 test_setopt(curl, CURLOPT_VERBOSE, 1L); in test() 70 test_setopt(curl, CURLOPT_URL, URL); in test() 78 test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri); in test() 82 test_setopt(curl, CURLOPT_RTSP_TRANSPORT, "Planes/Trains/Automobiles"); in test() [all …]
|
D | lib568.c | 12 * are also available at https://curl.haxx.se/docs/copyright.html. 45 CURL *curl; in test() local 58 curl = curl_easy_init(); in test() 59 if(!curl) { in test() 65 test_setopt(curl, CURLOPT_HEADERDATA, stdout); in test() 66 test_setopt(curl, CURLOPT_WRITEDATA, stdout); in test() 68 test_setopt(curl, CURLOPT_URL, URL); in test() 75 test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri); in test() 89 test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_ANNOUNCE); in test() 91 test_setopt(curl, CURLOPT_READDATA, sdpf); in test() [all …]
|
D | libauthretry.c | 12 * are also available at https://curl.haxx.se/docs/copyright.html. 30 static CURLcode send_request(CURL *curl, const char *url, int seq, in send_request() argument 44 test_setopt(curl, CURLOPT_URL, full_url); in send_request() 45 test_setopt(curl, CURLOPT_VERBOSE, 1L); in send_request() 46 test_setopt(curl, CURLOPT_HEADER, 1L); in send_request() 47 test_setopt(curl, CURLOPT_HTTPGET, 1L); in send_request() 48 test_setopt(curl, CURLOPT_USERPWD, userpwd); in send_request() 49 test_setopt(curl, CURLOPT_HTTPAUTH, auth_scheme); in send_request() 51 res = curl_easy_perform(curl); in send_request() 58 static CURLcode send_wrong_password(CURL *curl, const char *url, int seq, in send_wrong_password() argument [all …]
|
D | lib506.c | 12 * are also available at https://curl.haxx.se/docs/copyright.html. 43 static void my_lock(CURL *handle, curl_lock_data data, in my_lock() 83 static void my_unlock(CURL *handle, curl_lock_data data, void *useptr) in my_unlock() 133 CURL *curl; in fire() local 135 curl = curl_easy_init(); in fire() 136 if(!curl) { in fire() 142 curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L); in fire() 143 curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers); in fire() 144 curl_easy_setopt(curl, CURLOPT_URL, tdata->url); in fire() 146 curl_easy_setopt(curl, CURLOPT_SHARE, tdata->share); in fire() [all …]
|
D | lib1525.c | 13 * are also available at https://curl.haxx.se/docs/copyright.html. 37 size_t amount = nmemb * size; /* Total bytes curl wants */ in read_callback() 49 CURL *curl = NULL; in test() local 59 curl = curl_easy_init(); in test() 60 if(!curl) { in test() 72 test_setopt(curl, CURLOPT_URL, URL); in test() 73 test_setopt(curl, CURLOPT_PROXY, libtest_arg2); in test() 74 test_setopt(curl, CURLOPT_HTTPHEADER, hhl); in test() 75 test_setopt(curl, CURLOPT_PROXYHEADER, hhl); in test() 76 test_setopt(curl, CURLOPT_HEADEROPT, CURLHEADER_UNIFIED); in test() [all …]
|
D | lib1526.c | 12 * are also available at https://curl.haxx.se/docs/copyright.html. 36 size_t amount = nmemb * size; /* Total bytes curl wants */ in read_callback() 47 CURL *curl = NULL; in test() local 57 curl = curl_easy_init(); in test() 58 if(!curl) { in test() 75 test_setopt(curl, CURLOPT_URL, URL); in test() 76 test_setopt(curl, CURLOPT_PROXY, libtest_arg2); in test() 77 test_setopt(curl, CURLOPT_HTTPHEADER, hhl); in test() 78 test_setopt(curl, CURLOPT_PROXYHEADER, phl); in test() 79 test_setopt(curl, CURLOPT_HEADEROPT, CURLHEADER_SEPARATE); in test() [all …]
|
/external/curl/include/curl/ |
D | easy.h | 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 [all …]
|
/external/curl/tests/data/ |
D | test1135 | 33 CURL_EXTERN curl_mime *curl_mime_init(CURL *easy); 50 CURL_EXTERN char *curl_easy_escape(CURL *handle, 52 CURL_EXTERN char *curl_easy_unescape(CURL *handle, 68 CURL_EXTERN CURLcode curl_easy_pause(CURL *handle, int bitmask); 69 CURL_EXTERN CURL *curl_easy_init(void); 70 CURL_EXTERN CURLcode curl_easy_setopt(CURL *curl, CURLoption option, ...); 71 CURL_EXTERN CURLcode curl_easy_perform(CURL *curl); 72 CURL_EXTERN void curl_easy_cleanup(CURL *curl); 73 CURL_EXTERN CURLcode curl_easy_getinfo(CURL *curl, CURLINFO info, ...); 74 CURL_EXTERN CURL *curl_easy_duphandle(CURL *curl); [all …]
|
/external/google-breakpad/src/third_party/curl/ |
D | easy.h | 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 [all …]
|