b6dd849f | 02-Aug-2022 |
Daniel Stenberg |
CURLINFO_SPEED_UPLOAD/DOWNLOAD.3: fix examples Reported-by: jvvprasad78 on github Assisted-by: Jay Satiro Fixes #9239 Closes #9241 |
073268a6 | 02-Aug-2022 |
Fabian Keil |
test44[2-4]: add '--resolve' to the keywords ... so the tests can be automatically skipped when using an external proxy like Privoxy. Closes #9250 |
2f6118e4 | 07-Aug-2022 |
Daniel Stenberg |
RELEASE-NOTES: synced |
ba670b31 | 06-Aug-2022 |
Daniel Stenberg |
CURLOPT_CONNECT_ONLY.3: clarify multi API use Reported-by: Maxim Ivanov Fixes #9244 Closes #9262 |
4641575f | 31-Jul-2022 |
Andrew Lambert |
curl_easy_header: Add CURLH_PSEUDO to sanity check Fixes #9235 Closes #9236 |
ce8031d3 | 30-Jul-2022 |
Emil Engler |
docs: add dns category to --resolve This commit adds the dns category to the --resolve command line option, because it can be interpreted as both: a low-level connection option and a
docs: add dns category to --resolve This commit adds the dns category to the --resolve command line option, because it can be interpreted as both: a low-level connection option and an option related to the resolving of a hostname. It is also not common for dns options to belong to the connection category and vice versa. --ipv4 and --ipv6 are both good examples. Closes #9229
show more ...
|
8beff435 | 22-Jul-2022 |
Wyatt O'Day |
schannel: Add TLS 1.3 support - Support TLS 1.3 as the default max TLS version for Windows Server 2022 and Windows 11. - Support specifying TLS 1.3 ciphers via existing option
schannel: Add TLS 1.3 support - Support TLS 1.3 as the default max TLS version for Windows Server 2022 and Windows 11. - Support specifying TLS 1.3 ciphers via existing option CURLOPT_TLS13_CIPHERS (tool: --tls13-ciphers). Closes https://github.com/curl/curl/pull/8419
show more ...
|
92179353 | 30-Jul-2022 |
Emil Engler |
cmdline-opts/gen.pl: improve performance On some systems, the gen.pl script takes nearly two minutes for the generation of the main-page, which is a completely unacceptable time.
cmdline-opts/gen.pl: improve performance On some systems, the gen.pl script takes nearly two minutes for the generation of the main-page, which is a completely unacceptable time. The slow performance has two causes: 1. Use of a regex locale operator 2. Useless invokations of loops The commit addresses the first issue by replacing the "\W" wiht [^a-zA-Z0-9_], which is, according to regex101.com, functionally equivalent to the previous operation, except that it is obviously limited to ASCII only, which is fine, as the curl project is English-only anyway. The second issue is being addressed by only running the loop if the line contains a "--" in it. The loop may be completeley removed in the future. Co-authored-by: Emanuele Torre <torreemanuele6@gmail.com> See #8299 Fixes #9230 Closes #9232
show more ...
|
209ffd7d | 28-Jul-2022 |
Daniel Stenberg |
docs/cmdline: mark fail and fail-with-body as mutually exclusive Reported-by: Andreas Sommer Fixes #9221 Closes #9222 |
2086b69b | 29-Jul-2022 |
Nao Yonashiro |
quiche: fix build failure Reviewed-by: Alessandro Ghedini Closes #9223 |
c3456652 | 02-Aug-2022 |
Viktor Szakats |
configure.ac: drop references to deleted functions follow-up from 4d73854462f30948acab12984b611e9e33ee41e6 Reported-by: Oliver Roberts Fixes #9238 Closes #9240 |
3b52a80c | 27-Jul-2022 |
Sean McArthur |
hyper: enable obs-folded multiline headers Closes #9216 |
3141062c | 26-Jul-2022 |
Daniel Stenberg |
connect: revert the use of IP*_RECVERR The options were added in #6341 and d13179d, but cause problems: Lots of POLLIN event occurs but recvfrom read nothing. Reported-by: Tatsu
connect: revert the use of IP*_RECVERR The options were added in #6341 and d13179d, but cause problems: Lots of POLLIN event occurs but recvfrom read nothing. Reported-by: Tatsuhiro Tsujikawa Fixes #9209 Closes #9215
show more ...
|
263409cf | 27-Jul-2022 |
Marco Kamner |
docs: remove him/her/he/she from documentation Closes #9208 |
14f4e67f | 27-Jul-2022 |
Daniel Stenberg |
RELEASE-NOTES: synced |
f7e14fee | 26-Jul-2022 |
Daniel Stenberg |
tool_getparam: make --doh-url "" switch it off A possible future addition could be to parse the URL first too to verify that it is valid before trying to use it. Assisted-by: Ja
tool_getparam: make --doh-url "" switch it off A possible future addition could be to parse the URL first too to verify that it is valid before trying to use it. Assisted-by: Jay Satiro Closes #9207
show more ...
|
0c47d879 | 26-Jul-2022 |
Daniel Stenberg |
mailmap: add rzrymiak on github |
9bd40e2b | 25-Jul-2022 |
Jay Satiro |
ngtcp2: Fix build error due to change in nghttp3 prototypes ngtcp2/nghttp3@4a066b2 changed nghttp3_conn_block_stream and nghttp3_conn_shutdown_stream_write return from int to void.
ngtcp2: Fix build error due to change in nghttp3 prototypes ngtcp2/nghttp3@4a066b2 changed nghttp3_conn_block_stream and nghttp3_conn_shutdown_stream_write return from int to void. Reported-by: jurisuk@users.noreply.github.com Fixes https://github.com/curl/curl/issues/9204 Closes https://github.com/curl/curl/pull/9200
show more ...
|
e28edb66 | 26-Jul-2022 |
rzrymiak <106121613+rzrymiak@users.noreply.github.com> |
BUGS.md: improve language Closes #9205 |
bff62776 | 25-Jul-2022 |
Philip H <47042125+pheiduck@users.noreply.github.com> |
cirrus.yml: replace py38-pip with py39-pip Reported-by: Jay Satiro Fixes #9201 Closes #9202 |
206550a9 | 23-Jul-2022 |
Daniel Stenberg |
tool_getparam: fix cleanarg() for unicode builds Use the correct type, and make cleanarg an empty macro if the cleaning ability is absent. Fixes #9195 Closes #9196
tool_getparam: fix cleanarg() for unicode builds Use the correct type, and make cleanarg an empty macro if the cleaning ability is absent. Fixes #9195 Closes #9196 Reviewed-by: Jay Satiro Reviewed-by: Marcel Raad
show more ...
|
40b62060 | 14-Jun-2022 |
Marc Hoersken |
test3026: add support for Windows using native Win32 threads Reviewed-by: Viktor Szakats Reviewed-by: Jay Satiro Reviewed-by: Daniel Stenberg Follow up to 7ade9c50b35d95d47a
test3026: add support for Windows using native Win32 threads Reviewed-by: Viktor Szakats Reviewed-by: Jay Satiro Reviewed-by: Daniel Stenberg Follow up to 7ade9c50b35d95d47a43880c3097bebab7a7e690 Closes #9012
show more ...
|
6e241bbf | 25-Jul-2022 |
Evgeny Grin (Karlson2k) |
digest: fix memory leak, fix not quoted 'opaque' Fix leak regression introduced by 3a6fe0c. Closes https://github.com/curl/curl/pull/9199 |
6fa89fa8 | 20-Jul-2022 |
Daniel Stenberg |
tests: several enumerated type cleanups To please icc Closes #9179 |
0bb842a5 | 20-Jul-2022 |
Daniel Stenberg |
tool_paramhlp: fix "enumerated type mixed with another type" Warning by icc Closes #9179 |