d8490eb1 | 08-Feb-2022 |
Daniel Stenberg |
scripts/cijobs.pl: output data about all currect CI jobs This script parses the config files for all the CI services currently in use and output the information in a uniform way. The ide
scripts/cijobs.pl: output data about all currect CI jobs This script parses the config files for all the CI services currently in use and output the information in a uniform way. The idea is that the output from this script should be possible to massage into informational tables or graphs to help us visualize what they are all testing and NOT testing. Closes #8408
show more ...
|
e3e0eb4d | 08-Feb-2022 |
Daniel Stenberg |
maketgz: return error if 'make dist' fails To better detect this problem in CI jobs Reported-by: Marcel Raad Bug: https://curl.se/mail/lib-2022-02/0070.html Closes #8402 |
5c55fe6d | 08-Feb-2022 |
Daniel Stenberg |
h2h3: pass correct argument types to infof() Detected by Coverity. CID 1497993 Closes #8401 |
93767237 | 08-Feb-2022 |
Daniel Stenberg |
lib/Makefile: remove config-tpf.h from the dist Follow-up from da15443dddea2bfb. Missed before because the 'distcheck' CI job was not working as intended. Reported-by: Marcel Ra
lib/Makefile: remove config-tpf.h from the dist Follow-up from da15443dddea2bfb. Missed before because the 'distcheck' CI job was not working as intended. Reported-by: Marcel Raad Bug: https://curl.se/mail/lib-2022-02/0070.html Closes #8403
show more ...
|
ff4bf6bf | 07-Feb-2022 |
Daniel Stenberg |
configure: remove support for "embedded ares" In March 2010 (commit 4259d2df7dd) we removed the embedded 'ares' directory from the curl source tree but we have since supported especi
configure: remove support for "embedded ares" In March 2010 (commit 4259d2df7dd) we removed the embedded 'ares' directory from the curl source tree but we have since supported especially detecting and using that build directory. The time has come to remove that kludge and ask users to specify the c-ares dir correctly with --enable-ares. Closes #8397
show more ...
|
436398be | 07-Feb-2022 |
Sebastian Sterk |
github/workflows/mbedtls: fix indent & remove unnecessary line breaks Closes #8399 |
47fc8a4b | 07-Feb-2022 |
Daniel Stenberg |
CI: move the NSS job from zuul to GHA Closes #8396 |
ba4e67bf | 07-Feb-2022 |
Daniel Stenberg |
tests/unit/Makefile.am: add NSS_LIBS to build with NSS fine Closes #8396 |
fe9440fa | 06-Feb-2022 |
Marcel Raad |
curl-openssl: fix SRP check for OpenSSL 3.0 When OpenSSL 3.0 is built with `--api=3.0` and `no-deprecated`, the SRP functions exist in the library, but are disabled for user code. Check
curl-openssl: fix SRP check for OpenSSL 3.0 When OpenSSL 3.0 is built with `--api=3.0` and `no-deprecated`, the SRP functions exist in the library, but are disabled for user code. Check if they are actually usable instead of only if they exist. Also, check for the functions actually required for TLS-SRP. TLS-SRP support is still enabled if OpenSSL is configured with just `--api=3.0` or with `--api=1.1.1 no-deprecated`. Closes https://github.com/curl/curl/pull/8394
show more ...
|
4028892f | 04-Feb-2022 |
HenrikHolst |
http: make Curl_compareheader() take string length arguments too Also add STRCONST, a macro that returns a string literal and it's length for functions that take "string,len" Re
http: make Curl_compareheader() take string length arguments too Also add STRCONST, a macro that returns a string literal and it's length for functions that take "string,len" Removes unnecesary calls to strlen(). Closes #8391
show more ...
|
a42677f0 | 06-Feb-2022 |
Daniel Stenberg |
vquic/vquic.h: removed the unused H3 psuedo defines |
4ab3ed07 | 06-Feb-2022 |
Daniel Stenberg |
ngtcp2: use Curl_pseudo_headers |
3fa405bb | 06-Feb-2022 |
Daniel Stenberg |
quiche: use Curl_pseudo_headers |
9f985a11 | 06-Feb-2022 |
Daniel Stenberg |
http2: use Curl_pseudo_headers |
f8c3724a | 06-Feb-2022 |
Daniel Stenberg |
h2h3: added Curl_pseudo_headers() For use with both http2 and http3 requests. |
79731d1a | 06-Feb-2022 |
Daniel Stenberg |
ngtcp2/quiche: make :scheme possible to set |
c85178a9 | 05-Feb-2022 |
Daniel Stenberg |
http2: allow CURLOPT_HTTPHEADER change ":scheme" The only h2 psuedo header that wasn't previously possible to change by a user. This change also makes it impossible to send a HTTP/1 head
http2: allow CURLOPT_HTTPHEADER change ":scheme" The only h2 psuedo header that wasn't previously possible to change by a user. This change also makes it impossible to send a HTTP/1 header that starts with a colon, which I don't think anyone does anyway. The other pseudo headers are possible to change indirectly by doing the rightly crafted request. Reported-by: siddharthchhabrap on github Fixes #8381 Closes #8393
show more ...
|
136f3e9d | 04-Feb-2022 |
Daniel Stenberg |
h2/h3: provide and refer to pseudo headers as defines ... and do sizeof() on the defines to use constants better. Closes #8389 |
793614b5 | 03-Feb-2022 |
MAntoniak <47522782+MAntoniak@users.noreply.github.com> |
smb: passing a socket for writing and reading data instead of FIRSTSOCKET Closes #8383 |
27614355 | 04-Feb-2022 |
Daniel Stenberg |
x509asn1: toggle off functions not needed for diff tls backends ... and clean the header file from private defines/structs (move to C file) and unused function prototypes. Close
x509asn1: toggle off functions not needed for diff tls backends ... and clean the header file from private defines/structs (move to C file) and unused function prototypes. Closes #8386
show more ...
|
9478a970 | 04-Feb-2022 |
Daniel Stenberg |
lib: move hostcheck and x509sn1 sources to vtls/ ... since they are used strictly by TLS code. Closes #8386 |
9f1d29ec | 04-Feb-2022 |
Marcel Raad |
version_win32: fix warning for `CURL_WINDOWS_APP` The build version is not supported by the UWP code. Closes https://github.com/curl/curl/pull/8385 |
60d076ce | 04-Feb-2022 |
Daniel Stenberg |
tests/disable-scan.pl: properly detect multiple symbols per line Test 1165 would fail on some systems because it didn't detect CURL_DISABLE_* symbols that were used to the right of anoth
tests/disable-scan.pl: properly detect multiple symbols per line Test 1165 would fail on some systems because it didn't detect CURL_DISABLE_* symbols that were used to the right of another one on the same line! The script would only detect and extract the first one. Reported-by: Marcel Raad Fixes #8384 Closes #8388
show more ...
|
a6e91967 | 03-Feb-2022 |
Jay Satiro |
config.d: Clarify _curlrc filename is still valid on Windows Recent changes added support for filename .curlrc on Windows, and when it's not found curl falls back on the original Windows
config.d: Clarify _curlrc filename is still valid on Windows Recent changes added support for filename .curlrc on Windows, and when it's not found curl falls back on the original Windows filename _curlrc. _curlrc was removed from the doc, however it is still valid. Closes https://github.com/curl/curl/pull/8382
show more ...
|
26101421 | 03-Feb-2022 |
Daniel Stenberg |
lib: remove support for CURL_DOES_CONVERSIONS TPF was the only user and support for that was dropped. Closes #8378 |