Home
last modified time | relevance | path

Searched refs:ci (Results 1 – 25 of 36) sorted by relevance

12

/curl/docs/libcurl/opts/
H A DCURLOPT_CERTINFO.md65 struct curl_certinfo *ci;
66 res = curl_easy_getinfo(curl, CURLINFO_CERTINFO, &ci);
70 printf("%d certs!\n", ci->num_of_certs);
72 for(i = 0; i < ci->num_of_certs; i++) {
75 for(slist = ci->certinfo[i]; slist; slist = slist->next)
H A DCURLINFO_CERTINFO.md73 struct curl_certinfo *ci;
74 res = curl_easy_getinfo(curl, CURLINFO_CERTINFO, &ci);
77 printf("%d certs!\n", ci->num_of_certs);
79 for(i = 0; i < ci->num_of_certs; i++) {
82 for(slist = ci->certinfo[i]; slist; slist = slist->next)
/curl/.github/workflows/
H A Dfuzz.yml11 - '*/ci'
50 uses: curl/curl-fuzzer/.github/workflows/ci.yml@master
H A Ddistcheck.yml11 - '*/ci'
64 make -j5 test-ci
89 make -j5 test-ci
112 make -j5 test-ci
H A Dsynopsis.yml11 - '*/ci'
H A Dreuse.yml12 - '*/ci'
H A Dbadwords.yml13 - '*/ci'
H A Dcodespell.yml11 - '*/ci'
H A Dlinux32.yml11 - '*/ci'
91 - run: make V=1 test-ci
H A Dman-examples.yml11 - '*/ci'
H A Dwolfssl.yml11 - '*/ci'
103 - run: make V=1 test-ci
H A Dnon-native.yml11 - '*/ci'
74 cmake --build bld --config Debug --target test-ci
109 cmake --build bld --config Debug --target test-ci
175 cmake --build bld --config Debug --target test-ci
H A Dlinkcheck.yml11 - '*/ci'
H A Dproselint.yml11 - '*/ci'
H A Dlinux-old.yml25 - '*/ci'
106 run: make -C bld-cares test-ci
H A Dcodeql-analysis.yml11 - '*/ci'
H A Dwindows.yml11 - '*/ci'
112 make -C bld -j5 V=1 test-ci
156 cmake --build bld --config '${{ matrix.type }}' --target test-ci
241 make -C bld -j5 V=1 test-ci
308 cmake --build bld --config '${{ matrix.type }}' --target test-ci
413 cmake --build bld --config '${{ matrix.type }}' --target test-ci
478 cmake --build bld --config '${{ matrix.type }}' --target test-ci
H A Dawslc.yml11 - '*/ci'
107 - run: make -C build V=1 test-ci
/curl/src/
H A Dtool_writeout.c165 if(wovar->ci) { in writeTime()
166 if(!curl_easy_getinfo(per->curl, wovar->ci, &us)) in writeTime()
293 if(wovar->ci) { in writeString()
294 if(wovar->ci == CURLINFO_HTTP_VERSION) { in writeString()
309 if(!curl_easy_getinfo(per->curl, wovar->ci, &strinfo) && strinfo) in writeString()
441 if(wovar->ci) { in writeLong()
442 if(!curl_easy_getinfo(per->curl, wovar->ci, &longinfo)) in writeLong()
505 if(wovar->ci) { in writeOffset()
506 if(!curl_easy_getinfo(per->curl, wovar->ci, &offinfo)) in writeOffset()
H A Dtool_writeout.h106 CURLINFO ci; member
/curl/
H A D.cirrus.yml24 # https://cirrus-ci.com/github/curl/curl
27 # https://cirrus-ci.org/guide/writing-tasks/
29 # https://cirrus-ci.com/settings/github/curl
85 - sudo -u nobody make V=1 TFLAGS="-n !SFTP !SCP" test-ci
H A DMakefile.am137 test-ci:
138 @(cd tests; $(MAKE) all ci-test)
H A Dappveyor.sh144 cmake --build _bld --config "${PRJ_CFG}" --target test-ci
/curl/lib/vtls/
H A Dvtls.c852 struct curl_certinfo *ci = &data->info.certs; in Curl_ssl_free_certinfo() local
854 if(ci->num_of_certs) { in Curl_ssl_free_certinfo()
857 for(i = 0; i<ci->num_of_certs; i++) { in Curl_ssl_free_certinfo()
858 curl_slist_free_all(ci->certinfo[i]); in Curl_ssl_free_certinfo()
859 ci->certinfo[i] = NULL; in Curl_ssl_free_certinfo()
863 ci->certinfo = NULL; in Curl_ssl_free_certinfo()
864 ci->num_of_certs = 0; in Curl_ssl_free_certinfo()
870 struct curl_certinfo *ci = &data->info.certs; in Curl_ssl_init_certinfo() local
881 ci->num_of_certs = num; in Curl_ssl_init_certinfo()
882 ci->certinfo = table; in Curl_ssl_init_certinfo()
[all …]
/curl/tests/
H A DCMakeLists.txt53 add_runtests(test-ci "-a -p ~flaky ~timing-dependent -r -rm")

Completed in 42 milliseconds

12