Home
last modified time | relevance | path

Searched refs:a (Results 76 – 100 of 1312) sorted by relevance

12345678910>>...53

/curl/docs/libcurl/opts/
H A DCURLOPT_DEFAULT_PROTOCOL.md17 CURLOPT_DEFAULT_PROTOCOL - default protocol to use if the URL is missing a
31 This option tells libcurl to use *protocol* if the URL is missing a scheme
40 *CURLE_UNSUPPORTED_PROTOCOL* when libcurl parses a URL without a
44 a list of protocol names supported by the build of libcurl that you are using.
48 Without this option libcurl would make a guess based on the host, see
56 NULL (make a guess based on the host)
65 /* set a URL without a scheme */
H A DCURLOPT_REDIR_PROTOCOLS_STR.md32 Pass a pointer to a string that holds a comma-separated list of case
34 libcurl may use in a transfer that it follows to in a redirect when
36 limit specific transfers to only be allowed to use a subset of protocols in
51 You can set "ALL" as a short-cut to enable all protocols. Note that by setting
53 but are introduced in a future libcurl version.
55 If trying to set a non-existing protocol or if no matching protocol at all is
91 CURLE_UNSUPPORTED_PROTOCOL if a listed protocol is not supported or disabled,
H A DCURLINFO_OS_ERRNO.md28 Pass a pointer to a long to receive the errno variable from a connect failure.
29 Note that the value is only set on failure, it is not reset upon a successful
32 libcurl network-related errors that may have a saved errno are:
37 transfer. Prior versions did not clear the saved errno, which means if a saved
38 errno is retrieved it could be from a previous transfer on the same handle.
H A DCURLOPT_HEADEROPT.md28 Pass a long that is a bitmask of options of how to deal with headers. The two
37 sent to a server and not to a proxy. Proxy headers must be set with
38 CURLOPT_PROXYHEADER(3) to get used. Note that if a non-CONNECT request
39 is sent to a proxy, libcurl sends both server headers and proxy headers. When
62 /* HTTPS over a proxy makes a separate CONNECT to the proxy, so tell
H A DCURLOPT_NETRC.md36 You can also tell libcurl a different filename to use with
39 libcurl uses a username (and supplied or prompted password) supplied with
49 *level* is a long that should be set to one of the values described below.
72 The **.netrc** file format is simple: you specify lines with a machine name
75 Each field is provided as a sequence of letters that ends with a space or
78 r, and t. Quoted strings are the only way a space character can be used in
79 a username or password.
92 provide a default anonymous login for hosts that are not otherwise matched,
93 add a line similar to this in the end:
103 Supply a password. If this token is present, curl supplies the specified
[all …]
H A DCURLOPT_CUSTOMREQUEST.md34 Pass a pointer to a null-terminated string as parameter.
54 When you tell libcurl to do a HEAD request, but then specify a GET though a
55 custom request libcurl still acts as if it sent a HEAD. To switch to a proper
56 HEAD use CURLOPT_NOBODY(3), to switch to a proper POST use
57 CURLOPT_POST(3) or CURLOPT_POSTFIELDS(3) and to switch to a proper
82 When you tell libcurl to use a custom request it behaves like a LIST or RETR
89 Instead of a **HELP** or **VRFY** when issuing SMTP based requests.
93 Normally a multi line response is returned which can be used, in conjunction
H A DCURLOPT_DOH_URL.md29 Pass in a pointer to a *URL* for the DoH server to use for name resolving. The
30 parameter should be a char pointer to a null-terminated string which must be a
34 is issued. Even if you set a crazy value here, curl_easy_setopt(3) still
39 To find the DoH server itself, which might be specified using a name, libcurl
61 CURLOPT_FTPPORT(3), a proxy type set to **CURLPROXY_SOCKS4** or
93 when given a bad DoH URL, libcurl might not detect the problem until it later
94 tries to resolve a name with it.
/curl/docs/libcurl/
H A Dcurl_mime_data.md20 curl_mime_data - set a mime part's body data from memory
33 curl_mime_data(3) sets a mime part's body content from memory data.
42 *CURL_ZERO_TERMINATED* to indicate *data* is a null-terminated
45 Setting a part's contents multiple times is valid: only the value set by the
50 curl_mime_data_cb(3) in such a case.
62 /* create a mime handle */
65 /* add a part */
80 CURLE_OK or a CURL error code upon failure.
H A Dcurl_mime_init.md20 curl_mime_init - create a mime handle
32 curl_mime_init(3) creates a handle to a new empty mime structure.
35 a curl_easy_setopt(3) call or added as a multipart in another mime
41 Using a mime handle is the recommended way to post an HTTP form, format and
42 send a multi-part email with SMTP or upload such an email to an IMAP server.
53 /* Build an HTTP form with a single field named "data", */
H A Dlibcurl-ws.md35 upgrading a regular HTTP(S) GET request to a WebSocket connection.
37 WebSocket is a TCP-like message-based communication protocol done over HTTP,
40 To initiate a WebSocket session with libcurl, setup an easy handle to use a
41 URL with a "WS://" or "WSS://" scheme. "WS" is for cleartext communication
46 it responds with a 101 Switching and then the client can speak WebSocket with
53 over the wire in one or more frames. Each frame in a message can have a size
56 libcurl delivers WebSocket data as frame fragments. It might send a whole
75 This mode is intended for applications that already have a WebSocket
83 respond with a PONG.
94 1. Using a write callback with CURLOPT_WRITEFUNCTION(3) much like other
[all …]
H A Dlibcurl-env.md19 libcurl reads and understands a set of environment variables that if set
22 supports a set of additional environment variables independently of this.
26 When libcurl is given a URL to use in a transfer, it first extracts the scheme
27 part from the URL and checks if there is a given proxy set for that in its
29 libcurl use the **http_proxy** variable, while a URL like ftp://example.com
34 systems actually have a case insensitive handling of environment variables and
43 This is a setting to set proxy for all URLs, independently of what scheme is
50 this variable's selection is used. Setting a name that is not a built-in
76 gives libcurl a comma-separated list of hostname patterns for which libcurl
77 should not use a proxy.
[all …]
H A Dcurl_mime_addpart.md26 curl_mime_addpart - append a new empty part to a mime structure
38 curl_mime_addpart(3) creates and appends a new empty part to the given
39 mime structure and returns a handle to it. The returned part handle can
55 /* create a mime handle */
58 /* add a part */
H A Dcurl_escape.md30 This function converts the given input **string** to a URL encoded string
31 and return that as a new allocated string. All input characters that are not
32 a-z, A-Z or 0-9 are converted to their "URL escaped" version (**%NN** where
33 **NN** is a two-digit hexadecimal number).
56 removed in a future release.
60 A pointer to a null-terminated string or NULL if it failed.
/curl/tests/data/
H A Dtest94819 REPLY %b64[n,a=user,%01host=127.0.0.1%01port=%SMTPPORT%01auth=Bearer mF_9.B5f-4.1JqM%01%01]b64% 334…
49 # The multi interface considers a broken "CONNECT" as a prematurely broken
50 # transfer and such a connection will not get a "QUIT"
54 %b64[n,a=user,%01host=127.0.0.1%01port=%SMTPPORT%01auth=Bearer mF_9.B5f-4.1JqM%01%01]b64%
H A Dtest89047 # The multi interface considers a broken "CONNECT" as a prematurely broken
48 # transfer and such a connection will not get a "QUIT"
51 AUTH OAUTHBEARER %b64[n,a=user,%01host=127.0.0.1%01port=%POP3PORT%01auth=Bearer mF_9.B5f-4.1JqM%01%…
H A Dtest43140 <file1 name="%LOGDIR/config%TESTNUMBER-a">
43 header = "a: a"
44 data = "a"
60 -K %LOGDIR/config%TESTNUMBER-a -K %LOGDIR/config%TESTNUMBER-b --next -d c %HOSTIP:%HTTPPORT/%TESTNU…
72 a: a
H A Dtest84546 # The multi interface considers a broken "CONNECT" as a prematurely broken
47 # transfer and such a connection will not get a "LOGOUT"
50 A002 AUTHENTICATE OAUTHBEARER %b64[n,a=user,%01host=127.0.0.1%01port=%IMAPPORT%01auth=Bearer mF_9.B…
H A Dtest85640 # The multi interface considers a broken "CONNECT" as a prematurely broken
41 # transfer and such a connection will not get a "QUIT"
/curl/tests/
H A Dstunnel.pem87 00:ab:0a:b0:03:d0:76:fe:5e:ce:15:de:61:d5:e3:
89 f1:d5:3c:55:3e:09:2c:ec:a0:d4:af:0e:3c:5a:a2:
97 18:00:80:4a:b7:c9:ba:b8:5f:29:bb:c4:ac:16:97:
99 84:7c:5e:cd:1a:e8:f1:3e:55:b3:21:0f:d0:36:13:
101 5a:50:f9:4a:9f:e0:a2:e7:69:f4:ad:5a:cf:3a:20:
126 0b:8a:ed:6a:87:fa:71:15:88:25:58:85:1b:4a:09:bf:43:00:
129 75:32:cf:0e:f8:5d:c4:a2:29:84:43:2c:75:81:26:12:6a:a0:
132 ed:dd:ea:8a:66:7e:87:85:19:aa:89:d3:3c:08:72:08:a1:4d:
135 7b:a2:4f:e9:b9:5c:b5:a4:52:50:b4:56:5a:44:8e:d9:d0:ed:
137 82:4a:a5:41:1b:29:f5:d3:96:df:80:d1:1e:00:7d:ba:35:94:
[all …]
/curl/tests/certs/
H A Dstunnel-sv.pem87 00:ab:0a:b0:03:d0:76:fe:5e:ce:15:de:61:d5:e3:
89 f1:d5:3c:55:3e:09:2c:ec:a0:d4:af:0e:3c:5a:a2:
97 18:00:80:4a:b7:c9:ba:b8:5f:29:bb:c4:ac:16:97:
99 84:7c:5e:cd:1a:e8:f1:3e:55:b3:21:0f:d0:36:13:
101 5a:50:f9:4a:9f:e0:a2:e7:69:f4:ad:5a:cf:3a:20:
126 0b:8a:ed:6a:87:fa:71:15:88:25:58:85:1b:4a:09:bf:43:00:
129 75:32:cf:0e:f8:5d:c4:a2:29:84:43:2c:75:81:26:12:6a:a0:
132 ed:dd:ea:8a:66:7e:87:85:19:aa:89:d3:3c:08:72:08:a1:4d:
135 7b:a2:4f:e9:b9:5c:b5:a4:52:50:b4:56:5a:44:8e:d9:d0:ed:
137 82:4a:a5:41:1b:29:f5:d3:96:df:80:d1:1e:00:7d:ba:35:94:
[all …]
/curl/tests/libtest/
H A Dlib558.c30 unsigned char a[] = {0x2f, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f, in test() local
46 asize = (int)sizeof(a); in test()
47 ptr = curl_easy_escape(NULL, (char *)a, asize); in test()
/curl/docs/cmdline-opts/
H A Detag-compare.md20 Make a conditional HTTP request for the specific ETag read from the given file
21 by sending a custom If-None-Match header using the stored ETag.
23 For correct results, make sure that the specified file contains only a single
26 Use the option --etag-save to first save the ETag from a response, and then
27 use this option to compare against the saved ETag in a subsequent request.
H A Dpost303.md5 Help: Do not switch to GET after a 303 redirect
21 following 303 redirect. A server may require a POST to remain a POST after a
H A Durl-query.md6 Help: Add a URL query part
24 Add a piece of data, usually a name + value pair, to the end of the URL query
28 If the argument starts with a '+' (plus), the rest of the string is provided
31 The query part of a URL is the one following the question mark on the right
/curl/docs/
H A DFAQ50 3.18 Can I use curl to send a POST/PUT and not wait for a response?
51 3.19 How do I get HTTP from a host using a specific IP address?
69 4.8 I found a bug
227 implement it for you, that is not a friendly attitude. We spend a
297 agree on a time schedule for publication etc. That way we produce a fix in a
337 be a lot better than a private curl version.
714 3.19 How do I get HTTP from a host using a specific IP address?
767 POST, -I will cause a HEAD and -T will make it a PUT.
913 If it is a problem with a binary you have downloaded or a package for your
1146 instead of a FILE * to a file:
[all …]

Completed in 41 milliseconds

12345678910>>...53