845f020e | 12-Dec-2022 |
Emil Engler |
docs: extend the dump-header documentation This commit extends the documentation of the --dump-header command-line option to reflect the behavior introduced in 8b1e5df7. See #10
docs: extend the dump-header documentation This commit extends the documentation of the --dump-header command-line option to reflect the behavior introduced in 8b1e5df7. See #10079 Closes #10085
show more ...
|
d4709fa4 | 12-Dec-2022 |
Daniel Stenberg |
RELEASE-NOTES: synced |
e6b37257 | 12-Dec-2022 |
Daniel Stenberg |
styled-output.d: this option does not work on Windows Reported-by: u20221022 on github Fixes #10082 Closes #10083 |
8b1e5df7 | 11-Dec-2022 |
Emil Engler |
tool: determine the correct fopen option for -D This commit fixes a bug in the dump-header feature regarding the determination of the second fopen(3) option. Reported-by: u20221
tool: determine the correct fopen option for -D This commit fixes a bug in the dump-header feature regarding the determination of the second fopen(3) option. Reported-by: u20221022 on github See #4753 See #4762 Fixes #10074 Closes #10079
show more ...
|
1a88b6b6 | 11-Dec-2022 |
Christian Schmitz |
docs/curl_ws_send: Fixed typo in websocket docs Replace as with is in relevant sentences. Closes: #10081 Reviewed-by: Daniel Gustafsson <daniel@yesql.se> |
b80dae23 | 11-Dec-2022 |
Prithvi MK |
c-hyper: fix multi-request mechanism It makes test 565 run fine. Fixes #8896 Closes #10080 Assisted-by: Daniel Stenberg |
fd2c9e5e | 09-Dec-2022 |
Andy Alt |
page-header: grammar improvement (display transfer rate) Closes #10068 |
d95a575d | 09-Dec-2022 |
Andy Alt |
docs/DEPRECATE.md: grammar improvement and sp correction The main thing I wanted to do was fix the spelling of "spent", but I think this rewording improves the flow of the paragraph.
docs/DEPRECATE.md: grammar improvement and sp correction The main thing I wanted to do was fix the spelling of "spent", but I think this rewording improves the flow of the paragraph. Closes #10067
show more ...
|
4ac64ead | 10-Dec-2022 |
Boris Verkhovskiy |
tool_cfgable: make socks5_gssapi_nec a boolean Closes #10078 |
99f72c01 | 09-Dec-2022 |
Frank Gevaerts |
contributors.sh: actually use $CURLWWW instead of just setting it. The script was all set up for flexibility where curl-www is elsewhere in the filesystem, but then hard-coded ../curl-ww
contributors.sh: actually use $CURLWWW instead of just setting it. The script was all set up for flexibility where curl-www is elsewhere in the filesystem, but then hard-coded ../curl-www anyway... Closes #10064
show more ...
|
f0b374f6 | 06-Dec-2022 |
Daniel Stenberg |
KNOWN_BUGS: remove items not considered bugs any more - CURL_GLOBAL_SSL This option was changed in libcurl 7.57.0 and clearly it has not caused too many issues and a lot of time
KNOWN_BUGS: remove items not considered bugs any more - CURL_GLOBAL_SSL This option was changed in libcurl 7.57.0 and clearly it has not caused too many issues and a lot of time has passed. - Store TLS context per transfer instead of per connection This is a possible future optimization. One that is much less important and interesting since the added support for CA caching. - Microsoft telnet server This bug was filed in May 2007 against curl 7.16.1 and we have not received further reports. - active FTP over a SOCKS Actually, proxies in general is not working with active FTP mode. This is now added in proxy documentation. - DICT responses show the underlying protocol curl still does this, but since this is now an established behavior since forever we cannot change it easily and adding an option for it seems crazy as this protocol is not so little its not worth it. Let's just live with it. - Secure Transport disabling hostname validation also disables SNI This is an already documented restriction in Secure Transport. - CURLOPT_SEEKFUNCTION not called with CURLFORM_STREAM The curl_formadd() function is marked and documented as deprecated. No point in collecting bugs for it. It should not be used further. - STARTTRANSFER time is wrong for HTTP POSTs After close source code inspection I cannot see how this is true or that there is any special treatment for different HTTP methods. We also have not received many further reports on this, making me strongly suspect that this is no (longer an) issue. - multipart formposts file name encoding The once proposed RFC 5987-encoding is since RFC 7578 documented as MUST NOT be used. The since then implemented MIME API allows the user to set the name on their own and can thus provide it encoded as it wants. - DoH is not used for all name resolves when enabled It is questionable if users actually want to use DoH for interface and FTP port name resolving. This restriction is now documented and we advice users against using name resolving at all for these functions. Closes #10043
show more ...
|
da8e215f | 09-Dec-2022 |
Daniel Stenberg |
CURLOPT_COOKIEFILE.3: advice => advise Closes #10063 Reviewed-by: Daniel Gustafsson |
fdafa0ef | 09-Dec-2022 |
Daniel Gustafsson |
curl.h: reword comment to not use deprecated option CURLOPT_INFILE was replaced by CURLOPT_READDATA in 7.9.7, reword the comment mentioning it to make code grepping easier as well as im
curl.h: reword comment to not use deprecated option CURLOPT_INFILE was replaced by CURLOPT_READDATA in 7.9.7, reword the comment mentioning it to make code grepping easier as well as improve the documentation. Closes: #10062 Reviewed-by: Daniel Stenberg <daniel@haxx.se>
show more ...
|
ac455487 | 07-Dec-2022 |
Ryan Schmidt |
system.h: fix socklen_t, curl_off_t, long long for Classic Mac OS Change "__MWERKS__" to "macintosh". When this block was originally added in 3ac6929 it was probably intended to handle c
system.h: fix socklen_t, curl_off_t, long long for Classic Mac OS Change "__MWERKS__" to "macintosh". When this block was originally added in 3ac6929 it was probably intended to handle classic Mac OS since the previous classic Mac OS build procedure for curl (which was removed in bf327a9) used Metrowerks CodeWarrior. But there are other classic Mac OS compilers, such as the MPW compilers, that were not handled by this case. For classic Mac OS, CURL_TYPEOF_CURL_SOCKLEN_T needs to match what's provided by the third-party GUSI library, which does not vary by compiler. Meanwhile CodeWarrior works on platforms other than classic Mac OS, and they may need different definitions. Separate blocks could be added later for any of those platforms that curl doesn't already support. Closes #10049
show more ...
|
b8e605ad | 08-Dec-2022 |
Ryan Schmidt |
vms: remove SIZEOF_SHORT The rest of SIZEOF_SHORT was removed in d48dd15. See #9291 Closes #10061 |
76b73c74 | 08-Dec-2022 |
Daniel Gustafsson |
tool_formparse: avoid clobbering on function params While perfectly legal to do, clobbering function parameters and using them as local variables is confusing at best and rarely improves
tool_formparse: avoid clobbering on function params While perfectly legal to do, clobbering function parameters and using them as local variables is confusing at best and rarely improves code readability. Fix by using a local variable instead, no functionality is changed. This also renames the parameter from data to mime_data since the term data is (soft) reserved for the easy handle struct. Closes: #10046 Reviewed-by: Daniel Stenberg <daniel@haxx.se>
show more ...
|
60453483 | 08-Dec-2022 |
Daniel Gustafsson |
noproxy: guard against empty hostnames in noproxy check When checking for a noproxy setting we need to ensure that we get a hostname passed in. If there is no hostname then there cannot
noproxy: guard against empty hostnames in noproxy check When checking for a noproxy setting we need to ensure that we get a hostname passed in. If there is no hostname then there cannot be a matching noproxy rule for it by definition. Closes: #10057 Reported-by: Geeknik Labs Reviewed-by: Daniel Stenberg <daniel@haxx.se>
show more ...
|
c8d24d4e | 08-Dec-2022 |
Daniel Stenberg |
c-hyper: CONNECT respones are not server responses Together with d31915a8dbbd it makes test 265 run fine. Fixes #8853 Assisted-by: Prithvi MK Assisted-by: Sean McArthur
c-hyper: CONNECT respones are not server responses Together with d31915a8dbbd it makes test 265 run fine. Fixes #8853 Assisted-by: Prithvi MK Assisted-by: Sean McArthur Closes #10060
show more ...
|
d31915a8 | 08-Dec-2022 |
Daniel Stenberg |
test265: Use "connection: keep-alive" response header When it answers as HTTP/1.0, so that clients (hyper) knows properly that the connection remains intact. |
3f06b423 | 08-Dec-2022 |
Daniel Stenberg |
RELEASE-NOTES: synced |
b42156b8 | 07-Dec-2022 |
Stefan Eissing |
cfilter: improve SSL connection checks - fixes `Curl_ssl_cf_get_ssl()` to detect also the first filter instance as ssl (refs #10053) - replaces `Curl_ssl_use()` with the corre
cfilter: improve SSL connection checks - fixes `Curl_ssl_cf_get_ssl()` to detect also the first filter instance as ssl (refs #10053) - replaces `Curl_ssl_use()` with the correct `Curl_conn_is_ssl()` Closes #10054 Fixes #10053 Reported-by: Patrick Monnerat
show more ...
|
42bcca4a | 06-Dec-2022 |
Daniel Stenberg |
runtests: silence nghttpx errors Also, move the output of the nghttpx_h3 info to the general "Env:" line in the test output header. Reported-by: Marcel Raad Ref: https://git
runtests: silence nghttpx errors Also, move the output of the nghttpx_h3 info to the general "Env:" line in the test output header. Reported-by: Marcel Raad Ref: https://github.com/curl/curl/commit/ca15b7512e8d1199e55fbaa206ef01e64b8f147d#commitcomment-92015094 Closes #10044
show more ...
|
33f1f4f7 | 05-Dec-2022 |
Ryan Schmidt |
config-mac: define HAVE_SYS_IOCTL_H This is needed to compile nonblock.c on classic Mac OS with Grand Unified Socket Interface (GUSI) because nonblock.c uses FIONBIO which is defined
config-mac: define HAVE_SYS_IOCTL_H This is needed to compile nonblock.c on classic Mac OS with Grand Unified Socket Interface (GUSI) because nonblock.c uses FIONBIO which is defined in <sys/filio.h> which is included by <sys/ioctl.h>. Ref: https://sourceforge.net/projects/gusi/ Closes https://github.com/curl/curl/pull/10042
show more ...
|
66fabeea | 07-Dec-2022 |
Philip Heiduck |
CI: Change FreeBSD image from 12.3 to 12.4 Ref: https://www.phoronix.com/news/FreeBSD-12.4-Released Closes https://github.com/curl/curl/pull/10051 |
5c68fd7c | 07-Dec-2022 |
Ryan Schmidt |
test1421: fix typo Closes https://github.com/curl/curl/pull/10055 |