/curl/scripts/ |
H A D | ciconfig.pl | 111 $used{$1}++; 116 $used{$1}++; 122 $used{$1}++; 127 $used{$1}++; 164 for my $w (sort keys %used) { 171 if(!$used{$w}) {
|
H A D | singleuse.pl | 154 my ($f, $used) = @_; 161 if($e !~ /^lib\/${used}\.c/) {
|
/curl/docs/libcurl/opts/ |
H A D | CURLINFO_USED_PROXY.md | 19 CURLINFO_USED_PROXY - whether the transfer used a proxy 32 Pass a pointer to a long. It gets set to zero set if no proxy was used in the 33 previous transfer or a non-zero value if a proxy was used. 53 long used; 54 res = curl_easy_getinfo(curl, CURLINFO_USED_PROXY, &used); 56 printf("The proxy was %sused\n", used ? "": "NOT ");
|
H A D | CURLINFO_CONN_ID.md | 18 CURLINFO_CONN_ID - get the ID of the last connection used by the handle 32 used by the handle. Stores -1 if there was no connection used. 58 printf("Connection used: %" CURL_FORMAT_CURL_OFF_T "\n", conn_id);
|
H A D | CURLOPT_DNS_SHUFFLE_ADDRESSES.md | 32 function shuffles the order of all returned addresses so that they are used in 34 gethostbyname function which is no longer used on most platforms. 37 cache. CURLOPT_DNS_CACHE_TIMEOUT(3) can be used together with this 44 performance impacts and may cause IPv4 to be used before IPv6 or vice versa.
|
H A D | CURLOPT_TFTP_BLKSIZE.md | 29 RFC 2348 is 8-65464 bytes. The default of 512 bytes is used if this option is 30 not specified. The specified block size is only used if supported by the 33 is used.
|
H A D | CURLINFO_PRIMARY_PORT.md | 34 This is the destination port of the actual TCP or UDP connection libcurl used. 35 If a proxy was used for the most recent transfer, this is the port number of 36 the proxy, if no proxy was used it is the port number of the most recently
|
H A D | CURLOPT_POSTFIELDSIZE_LARGE.md | 32 strlen() to measure the data size, this option must be used. When this option 33 is used you can post fully binary data, which otherwise is likely to fail. If 35 CURLOPT_READFUNCTION(3) (if used) to signal the end of data.
|
H A D | CURLOPT_CONNECT_ONLY.md | 35 The option can be used to simply test a connection to a server, but is more 36 useful when used with the CURLINFO_ACTIVESOCKET(3) option to 38 the application can obtain the most recently used socket for special data 41 Since 7.86.0, this option can be set to '2' and if HTTP or WebSocket are used,
|
H A D | CURLOPT_MAIL_AUTH.md | 29 Pass a pointer to a null-terminated string as parameter. This is used to 34 communicate the authentication of individual messages and should only be used 38 be used for this parameter. 42 string is used then a pair of brackets are sent by libcurl as required by RFC
|
/curl/docs/examples/ |
H A D | version-check.pl | 70 my %used; 76 $used{$1}++; 90 my @recent = reverse sort sortversions keys %used;
|
/curl/docs/cmdline-opts/ |
H A D | get.md | 22 When used, this option makes all data specified with --data, --data-binary or 23 --data-urlencode to be used in an HTTP GET request instead of the POST request 24 that otherwise would be used. curl appends the provided data to the URL as a 27 If used in combination with --head, the POST data is instead appended to the
|
H A D | resolve.md | 21 otherwise normally resolved address to be used. Consider it a sort of 23 the number used for the specific protocol the host is used for. It means 29 with a specific host and port is used first. 31 The provided address set by this option is used even if --ipv4 or --ipv6 is 36 parallel transfers with a lot of files. In such cases, if this option is used
|
H A D | output-dir.md | 20 --output are used. 22 The given output directory is used for all URLs and output options on the 26 --create-dirs is also used.
|
H A D | suppress-connect-headers.md | 19 When --proxytunnel is used and a CONNECT request is made do not output proxy 20 CONNECT response headers. This option is meant to be used with --dump-header 21 or --show-headers which are used to show protocol headers in the output. It
|
H A D | alt-svc.md | 21 file, that gets used. After a completed transfer, the cache is saved to the 27 If this option is used several times, curl loads contents from all the 28 files but the last one is used for saving.
|
H A D | show-error.md | 6 Help: Show error even when -s is used 19 When used with --silent, it makes curl show an error message if it fails.
|
H A D | disable.md | 18 If used as the **first** parameter on the command line, the *curlrc* config 19 file is not read or used. See the --config for details on the default config
|
H A D | hsts.md | 20 file, that is used. After a completed transfer, the cache is saved to the 31 If this option is used several times, curl loads contents from all the 32 files but the last one is used for saving.
|
/curl/m4/ |
H A D | xc-am-iface.m4 | 32 dnl newer is used at configure script generation time, this 33 dnl results in 'subdir-objects' automake option being used. 35 dnl is not used when generating configure script. 38 dnl is used to differentiate automake version 1.14 from older 65 dnl script regardless of automake version used in order 69 dnl initialization option 'subdir-objects' is used to 71 dnl is not used.
|
H A D | curl-confopts.m4 | 71 dnl --disable-ares option used 79 dnl --enable-ares option used 106 dnl --disable-curldebug option used 161 dnl --disable-debug option used 169 dnl --enable-debug option used 402 dnl --disable-werror option used 410 dnl --enable-werror option used 565 dnl finally c-ares will be used 600 dnl --enable-ntlm-wb option used 688 dnl --disable-ech option used [all …]
|
/curl/tests/data/ |
H A D | test475 | 21 %repeat[1750 x a line of text used for verifying this !%0d%0a]% 23 %repeat[1750 x a line of text used for verifying this !%0a]% 37 %repeat[1750 x a line of text used for verifying this !%0a]%
|
/curl/lib/ |
H A D | md4.c | 428 unsigned long used; in MD4_Update() local 436 used = saved_lo & 0x3f; in MD4_Update() 438 if(used) { in MD4_Update() 439 unsigned long available = 64 - used; in MD4_Update() 442 memcpy(&ctx->buffer[used], data, size); in MD4_Update() 462 unsigned long used, available; in MD4_Final() local 464 used = ctx->lo & 0x3f; in MD4_Final() 466 ctx->buffer[used++] = 0x80; in MD4_Final() 468 available = 64 - used; in MD4_Final() 471 memset(&ctx->buffer[used], 0, available); in MD4_Final() [all …]
|
/curl/docs/libcurl/ |
H A D | curl_easy_header.md | 49 might be used. The *origin* is a bitmask for what header sources you want. See 56 further redirects or when multi-state authentication is used. Passing in -1 is 58 amount of requests used. 60 libcurl stores and provides the actually used "correct" headers. If for 64 does not have to bother about multiple headers used wrongly. 67 subsequent calls to curl_easy_header(3) clobber the struct used in the 69 it wants to keep it around. The memory used for the struct gets freed with 76 This function can be used before (all) headers have been received and is fine 106 case this header was used more than once in the requested scope can be larger 114 **anchor** is a private handle used by libcurl internals. Do not modify.
|
H A D | curl_multi_waitfds.md | 38 These structures can be used for polling on multi_handle file descriptors in a 44 If a number of descriptors used by the multi_handle is greater than the 48 that on returns specifies the number of descriptors used by the multi_handle to 52 descriptors and allocate appropriate storage for them to be used in a 86 * Note that a better approach can be used to minimize allocations and
|