Home
last modified time | relevance | path

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

12

/curl/docs/libcurl/opts/
H A DCURLOPT_CERTINFO.md68 struct curl_certinfo *ci;
69 res = curl_easy_getinfo(curl, CURLINFO_CERTINFO, &ci);
73 printf("%d certs!\n", ci->num_of_certs);
75 for(i = 0; i < ci->num_of_certs; i++) {
78 for(slist = ci->certinfo[i]; slist; slist = slist->next)
H A DCURLINFO_CERTINFO.md76 struct curl_certinfo *ci;
77 res = curl_easy_getinfo(curl, CURLINFO_CERTINFO, &ci);
80 printf("%d certs!\n", ci->num_of_certs);
82 for(i = 0; i < ci->num_of_certs; i++) {
85 for(slist = ci->certinfo[i]; slist; slist = slist->next)
/curl/.github/workflows/
H A Dfuzz.yml11 - '*/ci'
46 uses: curl/curl-fuzzer/.github/workflows/ci.yml@master
H A Dnon-native.yml11 - '*/ci'
70 cmake --build bld --config Debug --target test-ci
107 cmake --build bld --config Debug --target test-ci
149 make test-ci V=1 TFLAGS='-j8 ~FTP'
180 cmake --build bld --config Debug --target test-ci
209 gmake test-ci V=1 TFLAGS='-j12 ~MQTT ~FTP'
H A Ddistcheck.yml11 - '*/ci'
57 make -j5 test-ci
82 make -j5 test-ci
105 make -j5 test-ci
H A Dlinux32.yml11 - '*/ci'
86 - run: make V=1 test-ci
H A Dcygwin.yml11 - '*/ci'
129 make -C bld -j5 V=1 test-ci
187 cmake --build bld --config '${{ matrix.type }}' --target test-ci
H A Dcodeql-analysis.yml11 - '*/ci'
H A Dlinux-old.yml25 - '*/ci'
107 run: make -C bld-cares test-ci
H A Dtorture.yml11 - '*/ci'
H A Dchecksrc.yml13 - '*/ci'
H A Dcurl-for-win.yml11 - '*/ci'
H A Dwindows.yml11 - '*/ci'
165 make -C bld -j5 V=1 test-ci
259 cmake --build bld --config '${{ matrix.type }}' --target test-ci
385 cmake --build bld --config '${{ matrix.type }}' --target test-ci
629 cmake --build bld --config '${{ matrix.type }}' --target test-ci
H A Dlinux.yml11 - '*/ci'
658 cmake --build . --verbose --target test-ci
660 make V=1 test-ci
670 cmake --build . --verbose --target curl-pytest-ci
672 make V=1 pytest-ci
H A Dcheckdocs.yml14 - '*/ci'
/curl/
H A DMakefile.am125 test-ci: test
127 pytest-ci: test
152 test-ci:
153 @(cd tests; $(MAKE) all ci-test)
158 pytest-ci:
159 @(cd tests; $(MAKE) all ci-pytest)
H A Dappveyor.sh144 cmake --build _bld --config "${PRJ_CFG}" --target test-ci
H A Dappveyor.yml25 # https://ci.appveyor.com/project/curlorg/curl/history
206 - /\/ci$/
/curl/src/
H A Dtool_writeout.c166 if(wovar->ci) { in writeTime()
167 if(!curl_easy_getinfo(per->curl, wovar->ci, &us)) in writeTime()
294 if(wovar->ci) { in writeString()
295 if(wovar->ci == CURLINFO_HTTP_VERSION) { in writeString()
310 if(!curl_easy_getinfo(per->curl, wovar->ci, &strinfo) && strinfo) in writeString()
442 if(wovar->ci) { in writeLong()
443 if(!curl_easy_getinfo(per->curl, wovar->ci, &longinfo)) in writeLong()
506 if(wovar->ci) { in writeOffset()
507 if(!curl_easy_getinfo(per->curl, wovar->ci, &offinfo)) in writeOffset()
H A Dtool_writeout.h107 CURLINFO ci; member
/curl/tests/
H A DMakefile.am168 ci-test: perlcheck all
183 default-pytest: ci-pytest
185 ci-pytest: all
H A DCMakeLists.txt50 if(NOT _targetname STREQUAL "test-ci")
70 if(NOT _targetname STREQUAL "pytest-ci")
108 add_runtests(test-ci "-a -p ~flaky ~timing-dependent -r -rm -j2")
113 add_pytest(curl-pytest-ci "-v")
/curl/lib/vtls/
H A Dvtls.c855 struct curl_certinfo *ci = &data->info.certs; in Curl_ssl_free_certinfo() local
857 if(ci->num_of_certs) { in Curl_ssl_free_certinfo()
860 for(i = 0; i < ci->num_of_certs; i++) { in Curl_ssl_free_certinfo()
861 curl_slist_free_all(ci->certinfo[i]); in Curl_ssl_free_certinfo()
862 ci->certinfo[i] = NULL; in Curl_ssl_free_certinfo()
866 ci->certinfo = NULL; in Curl_ssl_free_certinfo()
867 ci->num_of_certs = 0; in Curl_ssl_free_certinfo()
884 ci->num_of_certs = num; in Curl_ssl_init_certinfo()
885 ci->certinfo = table; in Curl_ssl_init_certinfo()
904 DEBUGASSERT(certnum < ci->num_of_certs); in Curl_ssl_push_certinfo_len()
[all …]
/curl/tests/data/
H A DDISABLED50 # example: https://travis-ci.org/curl/curl/builds/81633600
/curl/.circleci/
H A Dconfig.yml147 - run: make -j3 V=1 test-ci TFLAGS='-j14'

Completed in 39 milliseconds

12