/curl/tests/data/ |
H A D | test506 | 59 # 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 D | test1086 | 26 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 D | test1112 | 26 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 D | test971 | 5 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 D | test1175 | 5 symbols-in-versions 17 Verify that symbols-in-versions and libcurl-errors.3 are in sync
|
/curl/.github/scripts/ |
H A D | badwords.pl | 34 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 D | write-out.md | 69 (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 D | pinnedpubkey.md | 21 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 D | xattr.md | 5 Help: Store metadata in extended file attributes 19 When saving output to a file, tell curl to store file metadata in extended 20 file attributes. Currently, `curl` is stored in the `creator` attribute, 21 the URL is stored in the `xdg.origin.url` attribute and, for HTTP, the content 22 type is stored in the `mime_type` attribute. If the file system does not
|
H A D | disallow-username-in-url.md | 4 Long: disallow-username-in-url 5 Help: Disallow username in URL 12 - --disallow-username-in-url $URL 15 # `--disallow-username-in-url`
|
H A D | dump-header.md | 25 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
|
H A D | haproxy-clientip.md | 6 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
|
/curl/lib/ |
H A D | base64.c | 194 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 D | escape.c | 76 unsigned char in = (unsigned char)*string++; in curl_easy_escape() local 78 if(ISUNRESERVED(in)) { in curl_easy_escape() 80 if(Curl_dyn_addn(&d, &in, 1)) in curl_easy_escape() 87 out[1] = hex[in >> 4]; in curl_easy_escape() 88 out[2] = hex[in & 0xf]; in curl_easy_escape() 143 unsigned char in = (unsigned char)*string; in Curl_urldecode() local 144 if(('%' == in) && (alloc > 2) && in Curl_urldecode() 147 in = (unsigned char)(onehex2dec(string[1]) << 4) | onehex2dec(string[2]); in Curl_urldecode() 157 if(((ctrl == REJECT_CTRL) && (in < 0x20)) || in Curl_urldecode() 158 ((ctrl == REJECT_ZERO) && (in == 0))) { in Curl_urldecode() [all …]
|
H A D | sha256.c | 105 static CURLcode my_sha256_init(void *in) in my_sha256_init() argument 107 my_sha256_ctx *ctx = (my_sha256_ctx *)in; in my_sha256_init() 119 static void my_sha256_update(void *in, in my_sha256_update() argument 123 my_sha256_ctx *ctx = (my_sha256_ctx *)in; in my_sha256_update() 129 my_sha256_ctx *ctx = (my_sha256_ctx *)in; in my_sha256_final() 223 static CURLcode my_sha256_init(void *in) in my_sha256_init() argument 225 my_sha256_ctx *ctx = (my_sha256_ctx *)in; in my_sha256_init() 239 static void my_sha256_update(void *in, in my_sha256_update() argument 394 static CURLcode my_sha256_init(void *in) in my_sha256_init() argument 432 in += CURL_SHA256_BLOCK_SIZE; in my_sha256_update() [all …]
|
/curl/docs/libcurl/ |
H A D | curl_version_info.md | 11 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 D | libcurl-errors.md | 17 Added-in: n/a 141 Not used in modern versions. 161 Not used in modern versions. 185 Not used in modern versions. 200 Not used in modern versions. 237 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 D | CURLOPT_COOKIELIST.md | 14 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 D | CURLOPT_SSL_OPTIONS.md | 15 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' 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). 87 (Added in 7.77.0) 93 in cases when it wasn't possible to send early data the request is resent [all …]
|
H A D | CURLOPT_PROXY_SSL_OPTIONS.md | 16 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 D | CURLOPT_SSL_CIPHER_LIST.md | 23 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.
|
/curl/docs/ |
H A D | curl-config.md | 9 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 D | xc-val-flgs.m4 | 32 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 D | unit1396.c | 44 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 D | unit1656.c | 83 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()
|