/curl/docs/cmdline-opts/ |
H A D | etag-compare.md | 4 Long: etag-compare 15 - --etag-compare etag.txt $URL 18 # `--etag-compare` 27 use this option to compare against the saved ETag in a subsequent request.
|
H A D | etag-save.md | 12 - etag-compare
|
H A D | time-cond.md | 13 - etag-compare
|
H A D | Makefile.inc | 97 etag-compare.md \
|
/curl/lib/ |
H A D | splay.c | 37 #define compare(i,j) Curl_timediff_us(i,j) macro 54 timediff_t comp = compare(i, t->key); in Curl_splay() 58 if(compare(i, t->smaller->key) < 0) { in Curl_splay() 73 if(compare(i, t->larger->key) > 0) { in Curl_splay() 115 if(compare(i, t->key) == 0) { in Curl_splayinsert() 134 else if(compare(i, t->key) < 0) { in Curl_splayinsert() 171 if(compare(i, t->key) < 0) { in Curl_splaygetbest() 227 if(compare(KEY_NOTUSED, removenode->key) == 0) { in Curl_splayremove()
|
H A D | ftplistparser.c | 310 curl_fnmatch_callback compare; in ftp_pl_insert_finfo() local 332 compare = data->set.fnmatch; in ftp_pl_insert_finfo() 333 if(!compare) in ftp_pl_insert_finfo() 334 compare = Curl_fnmatch; in ftp_pl_insert_finfo() 338 if(compare(data->set.fnmatch_data, wc->pattern, in ftp_pl_insert_finfo()
|
H A D | http.c | 1487 char *compare = semicolonp ? semicolonp : headers->data; in Curl_add_custom_headers() local 1493 checkprefix("Host:", compare)) in Curl_add_custom_headers() 1497 checkprefix("Content-Type:", compare)) in Curl_add_custom_headers() 1501 checkprefix("Content-Type:", compare)) in Curl_add_custom_headers() 1506 checkprefix("Content-Length:", compare)) in Curl_add_custom_headers() 1511 checkprefix("Connection:", compare)) in Curl_add_custom_headers() 1514 checkprefix("Transfer-Encoding:", compare)) in Curl_add_custom_headers() 1517 else if((checkprefix("Authorization:", compare) || in Curl_add_custom_headers() 1518 checkprefix("Cookie:", compare)) && in Curl_add_custom_headers() 1525 result = Curl_hyper_header(data, req, compare); in Curl_add_custom_headers() [all …]
|
/curl/.github/workflows/ |
H A D | configure-vs-cmake.yml | 53 - name: compare generated curl_config.h files 56 - name: compare generated libcurl.pc files 59 - name: compare generated curl-config files 93 - name: compare generated curl_config.h files 96 - name: compare generated libcurl.pc files 99 - name: compare generated curl-config files 131 - name: compare generated curl_config.h files 134 - name: compare generated libcurl.pc files 137 - name: compare generated curl-config files
|
/curl/tests/data/ |
H A D | test1566 | 6 --etag-compare 32 --etag-compare that gets a 304 back shouldn't overwrite the file 35 http://%HOSTIP:%HTTPPORT/%TESTNUMBER -o %LOGDIR/output%TESTNUMBER --etag-compare %LOGDIR/etag%TESTN…
|
H A D | test341 | 39 Try to open a non existing file with --etag-compare should return an error 42 http://%HOSTIP:%HTTPPORT/%TESTNUMBER --etag-compare %LOGDIR/etag%TESTNUMBER
|
H A D | test342 | 34 Check if --etag-compare set correct etag in header 40 http://%HOSTIP:%HTTPPORT/%TESTNUMBER --etag-compare %LOGDIR/etag%TESTNUMBER
|
H A D | test3204 | 28 Use --etag-compare and --etag-save on an existing file 34 http://%HOSTIP:%HTTPPORT/%TESTNUMBER --etag-compare %LOGDIR/etag%TESTNUMBER --etag-save %LOGDIR/eta…
|
H A D | test344 | 34 Both --etag-compare and -save store new Etag using non-existing file 37 http://%HOSTIP:%HTTPPORT/%TESTNUMBER --etag-compare %LOGDIR/etag%TESTNUMBER --etag-save %LOGDIR/eta…
|
H A D | test345 | 34 Both --etag-compare and -save store new Etag using one pre-existing file 40 http://%HOSTIP:%HTTPPORT/%TESTNUMBER --etag-compare %LOGDIR/etag%TESTNUMBER --etag-save %LOGDIR/eta…
|
H A D | test343 | 34 Both --etag-compare and --etag-save to save new Etag 40 http://%HOSTIP:%HTTPPORT/%TESTNUMBER --etag-compare %LOGDIR/etag%TESTNUMBER --etag-save %LOGDIR/out…
|
H A D | test2100 | 47 # requires IPv6 so that we can assume and compare both DoH requests
|
H A D | test1631 | 61 # opens for us, so we can't compare with a known pre-existing number!
|
H A D | test1632 | 70 # server opens for us, so we can't compare with known pre-existing numbers!
|
H A D | test31 | 14 # compare with the exact server contents unless it too sends the data
|
/curl/docs/libcurl/ |
H A D | curl_strequal.md | 18 curl_strequal - compare two strings ignoring case 38 This function is provided by libcurl to enable applications to compare strings 49 const char *name = "compare";
|
H A D | curl_strnequal.md | 18 curl_strnequal - compare two strings ignoring case 41 This function is provided by libcurl to enable applications to compare strings 52 const char *name = "compare";
|
/curl/tests/ |
H A D | runtests.pl | 428 sub compare { subroutine 1294 $res = compare($runnerid, $testnum, $testname, "stdout", \@actual, \@validstdout); 1349 $res = compare($runnerid, $testnum, $testname, "stderr", \@actual, \@validstderr); 1407 $res = compare($runnerid, $testnum, $testname, "protocol", \@out, \@protocol); 1475 $res = compare($runnerid, $testnum, $testname, "data", \@out, \@reply); 1516 $res = compare($runnerid, $testnum, $testname, "upload", \@out, \@upload); 1559 $res = compare($runnerid, $testnum, $testname, "proxy", \@out, \@proxyprot); 1639 $res = compare($runnerid, $testnum, $testname, "output ($filename)", 1655 $res = compare($runnerid, $testnum, $testname, "socks", \@out, \@socksprot);
|
/curl/docs/ |
H A D | options-in-versions | 62 --etag-compare 7.68.0
|
/curl/CMake/ |
H A D | PickyWarnings.cmake | 88 -Wsign-compare # clang 1.0 gcc 2.95
|
/curl/packages/vms/ |
H A D | readme | 66 compare_curl_source.com Procedure to compare the working directory
|