Home
last modified time | relevance | path

Searched refs:in (Results 1 – 25 of 1177) sorted by relevance

12345678910>>...48

/curl/tests/data/
H A Dtest50659 # trigger in a different order!
92 lock: share [Pigs in space]: 0
93 unlock: share [Pigs in space]: 1
95 lock: cookie [Pigs in space]: 2
96 unlock: cookie [Pigs in space]: 3
98 lock: cookie [Pigs in space]: 4
99 unlock: cookie [Pigs in space]: 5
101 lock: cookie [Pigs in space]: 6
102 unlock: cookie [Pigs in space]: 7
104 lock: cookie [Pigs in space]: 8
[all …]
H A Dtest108626 Long chunk of data that couldn't possibly be sent in the time allotted.
27 Long chunk of data that couldn't possibly be sent in the time allotted.
28 Long chunk of data that couldn't possibly be sent in the time allotted.
29 Long chunk of data that couldn't possibly be sent in the time allotted.
30 Long chunk of data that couldn't possibly be sent in the time allotted.
31 Long chunk of data that couldn't possibly be sent in the time allotted.
32 Long chunk of data that couldn't possibly be sent in the time allotted.
33 Long chunk of data that couldn't possibly be sent in the time allotted.
34 Long chunk of data that couldn't possibly be sent in the time allotted.
35 Long chunk of data that couldn't possibly be sent in the time allotted.
[all …]
H A Dtest111226 Long chunk of data that couldn't possibly be sent in the time allotted.
27 Long chunk of data that couldn't possibly be sent in the time allotted.
28 Long chunk of data that couldn't possibly be sent in the time allotted.
29 Long chunk of data that couldn't possibly be sent in the time allotted.
30 Long chunk of data that couldn't possibly be sent in the time allotted.
31 Long chunk of data that couldn't possibly be sent in the time allotted.
32 Long chunk of data that couldn't possibly be sent in the time allotted.
33 Long chunk of data that couldn't possibly be sent in the time allotted.
34 Long chunk of data that couldn't possibly be sent in the time allotted.
35 Long chunk of data that couldn't possibly be sent in the time allotted.
[all …]
H A Dtest9715 options-in-versions
17 Verify that options-in-versions and docs/cmdline-opts are in sync
21 %SRCDIR/test971.pl %SRCDIR/../docs/options-in-versions %SRCDIR/../docs/cmdline-opts
H A Dtest11755 symbols-in-versions
17 Verify that symbols-in-versions and libcurl-errors.3 are in sync
/curl/.github/scripts/
H A Dbadwords.pl34 my $in = $_;
36 chomp $in;
37 if($in =~ /^ /) {
41 $in =~ s/(\[.*\])\(.*\)/$1/g;
43 $in =~ s/\`.*\`//g;
46 if(($in =~ /^(.*)$w/i && !$case) ||
47 ($in =~ /^(.*)$w/ && $case) ) {
51 printf STDERR " %4d | $in\n", $l;
/curl/docs/cmdline-opts/
H A Dwrite-out.md69 (Added in 8.2.0)
84 (Added in 7.26.0)
121 The http method used in the most recent HTTP request. (Added in 7.72.0)
126 (Added in 7.88.0)
129 Number of new connects made in the recent transfer. (Added in 7.12.3)
136 Number of redirects that were followed in the request. (Added in 7.12.3)
140 (Added in 8.9.0)
144 (Added in 7.75.0)
153 in 8.7.0)
210 (Added in 7.63.0)
[all …]
H A Dpinnedpubkey.md21 a path to a file which contains a single public key in PEM or DER format, or
35 OpenSSL and GnuTLS (added in 7.39.0), wolfSSL (added in 7.43.0), mbedTLS
36 (added in 7.47.0), Secure Transport macOS 10.7+/iOS 10+ (added in 7.54.1),
37 Schannel (added in 7.58.1)
41 OpenSSL, GnuTLS and wolfSSL (added in 7.44.0), mbedTLS (added in 7.47.0),
42 Secure Transport macOS 10.7+/iOS 10+ (added in 7.54.1), Schannel
43 (added in 7.58.1)
H A Ddisallow-username-in-url.md4 Long: disallow-username-in-url
5 Help: Disallow username in URL
12 - --disallow-username-in-url $URL
15 # `--disallow-username-in-url`
H A Dhaproxy-clientip.md6 Help: Set address in HAProxy PROXY
19 Sets a client IP in HAProxy PROXY protocol v1 header at the beginning of the
23 4 integers in the range [0..255] inclusive written in decimal representation
25 permitted in front of numbers in order to avoid any possible confusion
H A Ddump-header.md25 Starting in curl 8.10.0, specify `%` (a single percent sign) as filename
28 When used in FTP, the FTP server response lines are considered being "headers"
31 Starting in curl 8.11.0, using the --create-dirs option can also create
32 missing directory components for the path provided in --dump-header.
34 Having multiple transfers in one set of operations (i.e. the URLs in one
/curl/lib/
H A Dbase64.c194 const unsigned char *in = (unsigned char *)inputbuff; in base64_encode() local
213 *output++ = table64[ in[0] >> 2 ]; in base64_encode()
214 *output++ = table64[ ((in[0] & 0x03) << 4) | (in[1] >> 4) ]; in base64_encode()
215 *output++ = table64[ ((in[1] & 0x0F) << 2) | ((in[2] & 0xC0) >> 6) ]; in base64_encode()
216 *output++ = table64[ in[2] & 0x3F ]; in base64_encode()
218 in += 3; in base64_encode()
222 *output++ = table64[ in[0] >> 2 ]; in base64_encode()
224 *output++ = table64[ ((in[0] & 0x03) << 4) ]; in base64_encode()
232 *output++ = table64[ ((in[0] & 0x03) << 4) | ((in[1] & 0xF0) >> 4) ]; in base64_encode()
233 *output++ = table64[ ((in[1] & 0x0F) << 2) ]; in base64_encode()
H A Descape.c74 unsigned char in = (unsigned char)*string++; in curl_easy_escape() local
76 if(ISUNRESERVED(in)) { in curl_easy_escape()
78 if(Curl_dyn_addn(&d, &in, 1)) in curl_easy_escape()
85 out[1] = hex[in >> 4]; in curl_easy_escape()
86 out[2] = hex[in & 0xf]; in curl_easy_escape()
141 unsigned char in = (unsigned char)*string; in Curl_urldecode() local
142 if(('%' == in) && (alloc > 2) && in Curl_urldecode()
145 in = (unsigned char)(onehex2dec(string[1]) << 4) | onehex2dec(string[2]); in Curl_urldecode()
155 if(((ctrl == REJECT_CTRL) && (in < 0x20)) || in Curl_urldecode()
156 ((ctrl == REJECT_ZERO) && (in == 0))) { in Curl_urldecode()
[all …]
H A Didn.c61 static CURLcode iconv_to_utf8(const char *in, size_t inlen, in iconv_to_utf8() argument
67 char *iconv_in = (char *)in; in iconv_to_utf8()
90 static CURLcode mac_idn_to_ascii(const char *in, char **out) in mac_idn_to_ascii() argument
92 size_t inlen = strlen(in); in mac_idn_to_ascii()
97 CURLcode iconv_result = iconv_to_utf8(in, inlen, in mac_idn_to_ascii()
124 static CURLcode mac_ascii_to_idn(const char *in, char **out) in mac_ascii_to_idn() argument
126 size_t inlen = strlen(in); in mac_ascii_to_idn()
134 (void)uidna_nameToUnicodeUTF8(idna, in, -1, buffer, in mac_ascii_to_idn()
169 static CURLcode win32_idn_to_ascii(const char *in, char **out) in win32_idn_to_ascii() argument
171 wchar_t *in_w = curlx_convert_UTF8_to_wchar(in); in win32_idn_to_ascii()
[all …]
/curl/docs/libcurl/
H A Dcurl_version_info.md11 Added-in: 7.10.0
200 (Added in 7.38.0)
207 (Added in 7.74.0)
214 (Added in 7.33.0)
220 HTTP/3 and QUIC support are built-in (Added in 7.66.0)
227 (Added in 7.52.0)
267 (Added in 7.56.0)
280 (Added in 7.22.0) This feature was removed from curl in 8.8.0.
288 (Added in 7.47.0)
345 (Added in 7.40.0)
[all …]
H A Dlibcurl-errors.md17 Added-in: n/a
63 A requested feature, protocol or option was not found built-in in this libcurl
141 Not used in modern versions.
161 Not used in modern versions.
185 Not used in modern versions.
200 Not used in modern versions.
406 (Added in 7.18.2)
421 in 7.20.0)
533 (Added in 7.15.4)
538 (Added in 7.15.4)
[all …]
/curl/docs/libcurl/opts/
H A DCURLOPT_COOKIELIST.md14 Added-in: 7.14.1
19 CURLOPT_COOKIELIST - add to or manipulate cookies held in memory
55 erases all cookies held in memory
59 erases all session cookies held in memory
78 /* an inline import of a cookie in Netscape format. */
89 SEP "0" /* Expiry in epoch time format. 0 == Session */
121 The cookie file format and general cookie concepts in curl are described
126 **ALL** was added in 7.14.1
128 **SESS** was added in 7.15.4
130 **FLUSH** was added in 7.17.1
[all …]
H A DCURLOPT_PROXY_SSL_OPTIONS.md16 Added-in: 7.52.0
39 Tells libcurl to not attempt to use any workarounds for a security flaw in the
51 (the native Windows SSL library), with an exception in the case of Windows'
52 Untrusted Publishers block list which it seems cannot be bypassed. (Added in
60 and not with a root cert. (Added in 7.68.0)
64 Tells libcurl to ignore certificate revocation checks in case of missing or
68 precedence. (Added in 7.70.0)
78 macOS, Android and iOS (added in 8.3.0), with GnuTLS (added in 8.5.0) or on
79 Windows when built to use OpenSSL (Added in 7.71.0).
86 default behavior in libcurl with Schannel. Since the server can request any
[all …]
H A DCURLOPT_SSL_OPTIONS.md15 Added-in: 7.25.0
37 Tells libcurl to not attempt to use any workarounds for a security flaw in the
49 (the native Windows SSL library), with an exception in the case of Windows'
50 Untrusted Publishers block list which it seems cannot be bypassed. (Added in
58 and not with a root cert. (Added in 7.68.0)
62 Tells libcurl to ignore certificate revocation checks in case of missing or
66 precedence. (Added in 7.70.0)
76 macOS, Android and iOS (added in 8.3.0), with GnuTLS (added in 8.5.0) or on
77 Windows when built to use OpenSSL (Added in 7.71.0).
84 default behavior in libcurl with Schannel. Since the server can request any
[all …]
H A DCURLOPT_SSL_CIPHER_LIST.md23 Added-in: 7.9
68 NULL, use built-in list
92 OpenSSL support added in 7.9.
93 wolfSSL support added in 7.53.0.
94 Schannel support added in 7.61.0.
95 Secure Transport support added in 7.77.0.
96 BearSSL support added in 7.83.0.
97 mbedTLS support added in 8.8.0.
98 Rustls support added in 8.10.0.
H A DCURLOPT_SSLVERSION.md16 Added-in: 7.1
61 TLS v1.0 or later (Added in 7.34.0)
65 TLS v1.1 or later (Added in 7.34.0)
69 TLS v1.2 or later (Added in 7.34.0)
73 TLS v1.3 or later (Added in 7.52.0)
86 the TLS library support it. (Added in 7.54.0)
91 (Added in 7.54.0)
96 (Added in 7.54.0)
101 (Added in 7.54.0)
106 (Added in 7.54.0)
[all …]
/curl/docs/
H A Dcurl-config.md9 Added-in: 7.7.2
29 Displays the built-in path to the CA cert bundle this libcurl uses.
44 outputs a text saying that the current version is not new enough. (Added in
56 none, one, or several keywords in the list.
64 Shows the complete set of libs and other linker options you need in order to
70 in $prefix/lib and its header files are installed in $prefix/include and so
79 be none, one, or several protocols in the list. (Added in 7.13.0)
85 (Added in 7.58.0)
90 link your application with libcurl statically. (Added in 7.17.1)
99 This shows the version number, in hexadecimal, using 8 bits for each part:
[all …]
/curl/m4/
H A Dxc-val-flgs.m432 for xc_word in $LIBS; do
33 case "$xc_word" in
55 for xc_word in $LDFLAGS; do
56 case "$xc_word" in
75 case "$xc_word" in
100 for xc_word in $CPPFLAGS; do
101 case "$xc_word" in
117 case "$xc_word" in
139 for xc_word in $CFLAGS; do
140 case "$xc_word" in
[all …]
/curl/tests/unit/
H A Dunit1396.c44 const char *in; member
86 for(i = 0; list1[i].in; i++) {
89 list1[i].in, list1[i].inlen,
102 for(i = 0; list2[i].in; i++) {
104 char *out = curl_easy_escape(hnd, list2[i].in, list2[i].inlen);
H A Dunit1656.c83 const char *in = spec->input; in do_test() local
86 result = Curl_x509_GTime2str(dbuf, in, in + strlen(in)); in do_test()
94 i, in, spec->exp_output, Curl_dyn_ptr(dbuf)); in do_test()

Completed in 33 milliseconds

12345678910>>...48