Home
last modified time | relevance | path

Searched full:curl (Results 1 – 25 of 1766) sorted by relevance

12345678910>>...71

/external/curl/packages/vms/
Dcurlmsg.sdl10 /* 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 …]
Dstage_curl_install.com5 $! 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]curlbuild.h
15 $! [usr.include.curl]curlrules.h
16 $! [usr.include.curl]curlver.h
17 $! [usr.include.curl]easy.h
18 $! [usr.include.curl]mprintf.h
[all …]
/external/libbrillo/brillo/http/
Dcurl_api.h8 #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 …]
Dcurl_api.cc18 "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/docs/
DMANUAL4 from the curl web pages, located at:
6 https://curl.haxx.se
12 curl http://www.netscape.com/
16 curl ftp://ftp.funet.fi/README
20 curl http://www.weirdserver.com:8000/
24 curl ftp://cool.haxx.se/
26 Get the definition of curl from a dictionary:
28 curl dict://dict.org/m:curl
32 curl ftp://cool.haxx.se/ http://www.weirdserver.com:8000/
36 curl ftps://files.are.secure.com/secrets.txt
[all …]
DFAQ10 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 …]
DTheArtOfHttpScripting8 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 …]
DHISTORY.md1 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 …]
DKNOWN_BUGS47 5.2 curl-config --libs contains private details
87 11.1 Curl leaks .onion hostnames in DNS
109 https://github.com/curl/curl/issues/608
114 heap corruption and crash. https://curl.haxx.se/bug/view.cgi?id=1411
123 https://github.com/curl/curl/issues/218
124 https://curl.haxx.se/bug/view.cgi?id=1213
139 https://curl.haxx.se/mail/archive-2008-02/0043.html
145 https://curl.haxx.se/mail/lib-2008-08/0462.html
158 https://github.com/curl/curl/issues/522
163 curl while the connection is held in curl's connection pool, the socket will
[all …]
Dcurl.112 .\" * are also available at https://curl.haxx.se/docs/copyright.html.
23 .TH curl 1 "30 Nov 2014" "Curl 7.40.0" "Curl Manual"
25 curl \- transfer a URL
27 .B curl [options]
30 .B curl
36 curl offers a busload of useful tricks like proxy support, user
41 curl is powered by libcurl for all transfer-related features. See
85 If you specify URL without protocol:// prefix, curl will attempt to guess what
88 with "ftp." curl will assume you want to speak FTP.
90 curl will do its best to use what you pass to it as a URL. It is not trying to
[all …]
/external/curl/src/
Dtool_operate.c12 * are also available at https://curl.haxx.se/docs/copyright.html.
89 CURLcode curl_easy_perform_ev(CURL *easy);
101 "More details here: https://curl.haxx.se/docs/sslcerts.html\n\n" \
102 "curl performs SSL certificate verification by default, " \
113 "If you'd like to turn off curl's verification of the certificate, use\n" \
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()
289 result = FindWin32CACert(config, "curl-ca-bundle.crt"); in operate_do()
632 this_url = add_file_name_to_url(curl, this_url, uploadfile); in operate_do()
796 my_setopt(curl, CURLOPT_TCP_NODELAY, 0L); in operate_do()
[all …]
/external/curl/packages/Win32/cygwin/
DREADME1 Curl is a tool for transferring files with URL syntax, supporting
3 Curl supports HTTPS certificates, HTTP POST, HTTP PUT,
8 See /usr/doc/curl-$(VERSION)/FEATURES for more info.
15 (*) curl can be built without SSL support, see below for details
19 https://curl.haxx.se/
20 https://curl.haxx.se/download.html
42 such that "make install" blew up at curl.exe. See this URL for details:
44 The copy of ltmain.sh that is distributed with curl includes this patch.
46 As of curl 7.9.1, the official source compiles (under Cygwin) and tests
55 the no-ssl release is only available from the curl website
[all …]
/external/curl/docs/examples/
Drtsp.c59 #include <curl/curl.h>
75 static void rtsp_options(CURL *curl, const char *uri) in rtsp_options() argument
79 my_curl_easy_setopt(curl, CURLOPT_RTSP_STREAM_URI, uri); in rtsp_options()
80 my_curl_easy_setopt(curl, CURLOPT_RTSP_REQUEST, (long)CURL_RTSPREQ_OPTIONS); in rtsp_options()
81 my_curl_easy_perform(curl); in rtsp_options()
86 static void rtsp_describe(CURL *curl, const char *uri, in rtsp_describe() argument
99 my_curl_easy_setopt(curl, CURLOPT_WRITEDATA, sdp_fp); in rtsp_describe()
100 my_curl_easy_setopt(curl, CURLOPT_RTSP_REQUEST, (long)CURL_RTSPREQ_DESCRIBE); in rtsp_describe()
101 my_curl_easy_perform(curl); in rtsp_describe()
102 my_curl_easy_setopt(curl, CURLOPT_WRITEDATA, stdout); in rtsp_describe()
[all …]
Dcookie_interface.c12 * 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()
65 CURL *curl; in main() local
69 curl = curl_easy_init(); in main()
70 if(curl) { in main()
73 curl_easy_setopt(curl, CURLOPT_URL, "http://www.example.com/"); in main()
[all …]
/external/curl/
DREADME.md1 ![curl logo](https://cdn.rawgit.com/curl/curl-www/master/logo/curl-logo.svg)
4 Curl is a command-line tool for transferring data specified with URL
5 syntax. Find out how to use curl by reading [the curl.1 man
6 page](https://curl.haxx.se/docs/manpage.html) or [the MANUAL
7 document](https://curl.haxx.se/docs/manual.html). Find out how to install Curl
8 by reading [the INSTALL document](https://curl.haxx.se/docs/install.html).
10 libcurl is the library curl is using to do its job. It is readily available to
12 page](https://curl.haxx.se/libcurl/c/libcurl.html) to learn how!
15 document](https://curl.haxx.se/docs/faq.html).
17 Study [the COPYING file](https://curl.haxx.se/docs/copyright.html) for
[all …]
DRELEASE-NOTES1 Curl and libcurl 7.52.0
3 Public curl releases: 161
13 o curl: introduce the --tlsv1.3 option to force TLS 1.3
14 o curl: Add --retry-connrefused [11]
20 o winbuild: remove strcase.obj from curl build [1]
25 o curl -w: added more decimal digits to timing counters [4]
40 o curl: add --fail-early [15]
43 o curl.1: Clarify --dump-header only writes received headers
53 o see docs/KNOWN_BUGS (https://curl.haxx.se/docs/knownbugs.html)
71 [1] = https://curl.haxx.se/bug/?i=1098
[all …]
/external/curl/tests/libtest/
Dtest1013.pl2 # 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 …]
Dlibauthretry.c12 * 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 …]
Dlib1533.c12 * 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 if((curl = curl_easy_init()) == NULL) { in test()
145 reset_data(&data, curl); in test()
[all …]
Dlib572.c12 * are also available at https://curl.haxx.se/docs/copyright.html.
45 CURL *curl; in test() local
58 if((curl = curl_easy_init()) == NULL) { in test()
65 test_setopt(curl, CURLOPT_HEADERDATA, stdout); in test()
66 test_setopt(curl, CURLOPT_WRITEDATA, stdout); in test()
67 test_setopt(curl, CURLOPT_VERBOSE, 1L); in test()
69 test_setopt(curl, CURLOPT_URL, URL); in test()
76 test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri); in test()
80 test_setopt(curl, CURLOPT_RTSP_TRANSPORT, "Planes/Trains/Automobiles"); in test()
81 test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_SETUP); in test()
[all …]
Dlib568.c12 * are also available at https://curl.haxx.se/docs/copyright.html.
45 CURL *curl; in test() local
58 if((curl = curl_easy_init()) == NULL) { in test()
64 test_setopt(curl, CURLOPT_HEADERDATA, stdout); in test()
65 test_setopt(curl, CURLOPT_WRITEDATA, stdout); in test()
67 test_setopt(curl, CURLOPT_URL, URL); in test()
73 test_setopt(curl, CURLOPT_RTSP_STREAM_URI, stream_uri); in test()
87 test_setopt(curl, CURLOPT_RTSP_REQUEST, CURL_RTSPREQ_ANNOUNCE); in test()
89 test_setopt(curl, CURLOPT_READDATA, sdpf); in test()
90 test_setopt(curl, CURLOPT_UPLOAD, 1L); in test()
[all …]
Dlib506.c12 * 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
136 curl = curl_easy_init(); in fire()
137 if(!curl) { in fire()
143 curl_easy_setopt(curl, CURLOPT_VERBOSE, 1L); in fire()
144 curl_easy_setopt(curl, CURLOPT_HTTPHEADER, headers); in fire()
145 curl_easy_setopt(curl, CURLOPT_URL, tdata->url); in fire()
147 curl_easy_setopt(curl, CURLOPT_SHARE, tdata->share); in fire()
[all …]
/external/curl/packages/EPM/
Dcurl.list.in14 %product curl
19 %description Curl is a command line tool for transfering data specified
24 f 0644 cowo pppusers ${mandir}/man1/curl.1 ./docs/curl.1
25 f 0644 cowo pppusers ${mandir}/man1/curl-config.1 ./docs/curl-config.1
53 f 0755 cowo pppusers ${bindir}/curl ./src/curl
54 f 0755 cowo pppusers ${bindir}/curl ./src/.libs/curl
55 f 0644 cowo pppusers ${includedir}/curl/curl.h ./include/curl/curl.h
56 f 0644 cowo pppusers ${includedir}/curl/easy.h ./include/curl/easy.h
57 f 0644 cowo pppusers ${includedir}/curl/mprintf.h ./include/curl/mprintf.h
58 f 0644 cowo pppusers ${includedir}/curl/stdcheaders.h ./include/curl/stdcheaders.h
[all …]
/external/curl/include/curl/
Deasy.h14 * 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/google-breakpad/src/third_party/curl/
Deasy.h14 * 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 …]

12345678910>>...71