Home
last modified time | relevance | path

Searched refs:a (Results 201 – 225 of 1312) sorted by relevance

12345678910>>...53

/curl/docs/cmdline-opts/
H A Detag-save.md6 Help: Parse incoming ETag and save to a file
19 Save an HTTP ETag to the specified file. An ETag is a caching related header,
20 usually returned in a response.
H A Dlocal-port.md6 Help: Use a local port number within RANGE
18 Set a preferred single number or range (FROM-TO) of local port numbers to use
19 for the connection(s). Note that port numbers by nature are a scarce resource
H A Djson.md24 Sends the specified JSON data in a POST request to the HTTP server. --json
25 works as a shortcut for passing on these three options:
34 If you start the data with the letter @, the rest should be a filename to read
35 the data from, or a single dash (-) if you want curl to read the data from
36 stdin. Posting data from a file named 'foobar' would thus be done with --json
H A Dpinnedpubkey.md21 a path to a file which contains a single public key in PEM or DER format, or
25 When negotiating a TLS or SSL connection, the server sends a certificate
H A Dnext.md23 Use a separate operation for the following URL and associated options. This
31 For example, you can do both a GET and a POST in a single command line:
/curl/src/
H A Dtool_setopt.c191 #define DECL1(f,a) ADDF((&easysrc_decl, f,a)) argument
194 #define DATA1(f,a) ADDF((&easysrc_data, f,a)) argument
195 #define DATA2(f,a,b) ADDF((&easysrc_data, f,a,b)) argument
196 #define DATA3(f,a,b,c) ADDF((&easysrc_data, f,a,b,c)) argument
199 #define CODE1(f,a) ADDF((&easysrc_code, f,a)) argument
200 #define CODE2(f,a,b) ADDF((&easysrc_code, f,a,b)) argument
201 #define CODE3(f,a,b,c) ADDF((&easysrc_code, f,a,b,c)) argument
204 #define CLEAN1(f,a) ADDF((&easysrc_clean, f,a)) argument
207 #define REM1(f,a) ADDF((&easysrc_toohard, f,a)) argument
208 #define REM3(f,a,b,c) ADDF((&easysrc_toohard, f,a,b,c)) argument
/curl/tests/data/
H A Dtest113332 …R/test%TESTNUMBER,and;.txt";type=m/f,"%LOGDIR/test%TESTNUMBER,and;.txt"' -F a="{\"field1\":\"value…
37 This is a bar foo
61 This is a bar foo
70 This is a bar foo
82 This is a bar foo
90 This is a bar foo
95 Content-Disposition: form-data; name="a"
H A Dtest155939 CURLUPART_URL 10000000 bytes URL == 3 (Malformed input to a URL function)
40 CURLUPART_SCHEME 10000000 bytes scheme == 3 (Malformed input to a URL function)
41 CURLUPART_USER 10000000 bytes user == 3 (Malformed input to a URL function)
H A Dtest43243 header = "a: a"
44 data = "a"
77 a: a
H A Dtest207340 http://%HOSTIP:%HTTPPORT/%TESTNUMBER -F 'name=a;filename=a.pdf' --next http://%HOSTIP:%HTTPPORT/%TE…
57 Content-Disposition: form-data; name="name"; filename="a.pdf"
60 a
H A Dtest49823a-large-number-of-times: Dorothy lived in the midst of the great Kansas prairies, with Uncle Henry…
46 # hyper returns a generic error that libcurl converts to an even more
/curl/docs/libcurl/
H A Dcurl_easy_perform.md19 curl_easy_perform - perform a blocking file transfer
31 curl_easy_perform(3) performs a network transfer in a blocking manner and
52 A network transfer moves data to a peer or from a peer. An application tells
54 CURLOPT_WRITEDATA(3) options. To tell libcurl what data to send, there are a
58 While the **easy_handle** is added to a multi handle, it cannot be used by
H A Dcurl_slist_append.md15 curl_slist_append - add a string to an slist
28 curl_slist_append(3) appends a string to a linked list of strings. The
31 a new list. The specified **string** has been appended when this function
76 failure, the new list should be returned to a temporary variable which can
/curl/docs/libcurl/opts/
H A DCURLOPT_ISSUERCERT_BLOB.md33 Pass a pointer to a curl_blob structure, which contains information (pointer
34 and size) about a memory block with binary data of a CA certificate in PEM
38 multi-level PKI where one needs to enforce that the peer certificate is from a
46 which is returned if the setup of the SSL/TLS session has failed due to a
55 expects a filename as input.
H A DCURLOPT_MAXLIFETIME_CONN.md18 CURLOPT_MAXLIFETIME_CONN - max lifetime (since creation) allowed for reusing a connection
31 Pass a long as parameter containing *maxlifetime* - the maximum time in
35 libcurl features a connection cache that holds previously used connections.
36 When a new request is to be done, libcurl considers any connection that
39 client-side load balancing. If a connection is found in the cache that is
H A DCURLINFO_LOCAL_IP.md30 Pass a pointer to a char pointer to receive the pointer to a null-terminated
33 enabled. Note that you get a pointer to a memory area that is reused at next
H A DCURLINFO_PRIMARY_IP.md31 Pass a pointer to a char pointer to receive the pointer to a null-terminated
34 get a pointer to a memory area that is reused at next request so you need to
H A DCURLSHOPT_UNLOCKFUNC.md32 Set a mutex unlock callback for the share object. There is a corresponding
35 The *unlockcb* argument must be a pointer to a function matching the
42 sure that the callback uses a different lock for each kind of data.
H A DCURLOPT_MAXFILESIZE_LARGE.md31 Pass a curl_off_t as parameter. This specifies the maximum accepted *size*
32 (in bytes) of a file to download. If the file requested is found larger than
34 returned. Passing a zero *size* disables this, and passing a negative *size*
35 yields a *CURLE_BAD_FUNCTION_ARGUMENT*.
H A DCURLOPT_SSL_CTX_FUNCTION.md37 Pass a pointer to your callback function, which should match the prototype
42 give a last chance to an application to modify the behavior of the SSL
43 initialization. The *ssl_ctx* parameter is a pointer to the SSL library's
44 *SSL_CTX* for OpenSSL or wolfSSL, a pointer to *mbedtls_ssl_config* for
45 mbedTLS or a pointer to *br_ssl_client_context* for BearSSL. If an error is
46 returned from the callback no attempt to establish a connection is made and
50 This function gets called for all new connections made to a server, during the
51 SSL negotiation. While *ssl_ctx* points to a newly initialized object each
52 time, the pointer may still be the same as in a prior call.
100 /* get a BIO */
[all …]
H A DCURLINFO_TLS_SSL_PTR.md44 Pass a pointer to a *struct curl_tlssessioninfo **. The pointer is initialized
45 to refer to a *struct curl_tlssessioninfo ** that contains an enum indicating
46 the SSL library used for the handshake and a pointer to the respective
49 This option may be useful for example to extract certificate information in a
67 The *internals* struct member points to a TLS library specific pointer for
113 a data channel and one or both may be over SSL. Currently there is no way to
114 retrieve a second in-use SSL session associated with an easy handle.
120 over a connection after it was upgraded.
122 Renegotiation. If unsafe renegotiation or renegotiation in a way that the
129 CURLOPT_SSL_CTX_FUNCTION(3) to set a verification callback, if supported.
[all …]
H A DCURLOPT_CHUNK_BGN_FUNCTION.md16 CURLOPT_CHUNK_BGN_FUNCTION - callback before a transfer with FTP wildcard match
34 /* If some of these fields is not NULL, it is a pointer to b_data. */
39 char *target; /* pointer to the target filename of a symlink */
59 Pass a pointer to your callback function, which should match the prototype
62 This callback function gets called by libcurl before a part of the stream is
65 The *transfer_info* pointer points to a **curl_fileinfo** struct with
71 The target of transfer_info parameter is a "feature depended" structure. For
73 *curl/curl.h*). The parameter *ptr* is a pointer given by
H A DCURLOPT_COOKIEFILE.md29 Pass a pointer to a null-terminated string as parameter. It should point to
32 headers (Set-Cookie style) dumped to a file.
39 (just a single minus sign), libcurl instead reads from stdin.
44 If you read cookies from a plain HTTP headers file and it does not specify a
46 domain cannot match the target URL's. To address this, set a domain in
61 This document previously mentioned how specifying a non-existing file can also
H A DCURLOPT_STDERR.md29 Pass a FILE * as parameter. Tell libcurl to use this *stream* instead of
33 If you are using libcurl as a Windows DLL, this option causes an exception and
34 a crash in the library since it cannot access a FILE * passed on from the
/curl/tests/libtest/
H A Dlib509.c74 unsigned char a[] = {0x2f, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f, in test() local
102 asize = (int)sizeof(a); in test()
103 str = curl_easy_escape(curl, (char *)a, asize); /* uses realloc() */ in test()

Completed in 66 milliseconds

12345678910>>...53