be238394 | 20-Sep-2020 |
Daniel Stenberg |
cmake: remove scary warning Remove the text saying "the curl cmake build system is poorly maintained. Be aware" ... not because anything changed just now, but to encourage
cmake: remove scary warning Remove the text saying "the curl cmake build system is poorly maintained. Be aware" ... not because anything changed just now, but to encourage users to use it and subsequently improve it. Closes #5984
show more ...
|
55358889 | 21-Sep-2020 |
Daniel Stenberg |
docs/MQTT: remove outdated paaragraphs |
e1485bd0 | 21-Sep-2020 |
Daniel Stenberg |
docs/MQTT: not experimental anymore Follow-up to e37e4468688d8f |
559ed3ca | 18-Sep-2020 |
Daniel Stenberg |
docs/RESOURCES: remove This document is not maintained and rather than trying to refresh it, let's kill it. A more up-to-date document with relevant RFCs is this page on the curl web
docs/RESOURCES: remove This document is not maintained and rather than trying to refresh it, let's kill it. A more up-to-date document with relevant RFCs is this page on the curl website: https://curl.haxx.se/rfc/ Closes #5980
show more ...
|
d3d8773b | 18-Sep-2020 |
Daniel Stenberg |
docs/TheArtOfHttpScripting: convert to markdown Makes it easier to browse on github etc. Offers (better) links. It should be noted that this document is already mostly outdated and
docs/TheArtOfHttpScripting: convert to markdown Makes it easier to browse on github etc. Offers (better) links. It should be noted that this document is already mostly outdated and "Everything curl" at https://ec.haxx.se/ is a better resource and tutorial. Closes #5981
show more ...
|
6f82ebd8 | 18-Sep-2020 |
Daniel Stenberg |
BUGS: convert document to markdown Closes #5979 |
5bd63e06 | 18-Sep-2020 |
Daniel Stenberg |
--help: strdup the category ... since it is converted and the original pointer is freed on Windows unicode handling. Follow-up to aa8777f63febc Fixes #5977 Closes #5978
--help: strdup the category ... since it is converted and the original pointer is freed on Windows unicode handling. Follow-up to aa8777f63febc Fixes #5977 Closes #5978 Reported-by: xwxbug on github
show more ...
|
2df7414a | 18-Sep-2020 |
Daniel Stenberg |
CHECKSRC: document two missing warnings |
2cf5f936 | 18-Sep-2020 |
Daniel Stenberg |
RELEASE-NOTES: synced |
3d8731c8 | 17-Sep-2020 |
Daniel Stenberg |
ftp: avoid risk of reading uninitialized integers If the received PASV response doesn't match the expected pattern, we could end up reading uninitialized integers for IP address and port
ftp: avoid risk of reading uninitialized integers If the received PASV response doesn't match the expected pattern, we could end up reading uninitialized integers for IP address and port number. Issue pointed out by muse.dev Closes #5972
show more ...
|
7921b41c | 17-Sep-2020 |
Quentin Balland |
easy_reset: clear retry counter Closes #5975 Fixes #5974 |
cc372af1 | 17-Sep-2020 |
Daniel Stenberg |
ftp: get rid of the PPSENDF macro The use of such a macro hides some of what's actually going on to the reader and is generally disapproved of in the project. Closes #5971 |
83cc9667 | 16-Sep-2020 |
Daniel Stenberg |
man pages: switch to https://example.com URLs Since HTTPS is "the new normal", this update changes a lot of man page examples to use https://example.com instead of the previous "http://.
man pages: switch to https://example.com URLs Since HTTPS is "the new normal", this update changes a lot of man page examples to use https://example.com instead of the previous "http://..." Closes #5969
show more ...
|
cd048aaa | 17-Sep-2020 |
Daniel Stenberg |
github: remove the duplicate "Security vulnerability" entry ... since github adds an entry automatically by itself. Closes #5970 |
48fb543d | 08-Sep-2020 |
Emil Engler |
github: use new issue template feature This helps us to avoid getting feature requests as well as security bugs reported into the issue tracker. Closes #5936 |
c0f0e400 | 16-Sep-2020 |
Emil Engler |
urlapi: use more Curl_safefree Closes #5968 |
1060955a | 12-Sep-2020 |
Marc Hoersken |
multi: align WinSock mask variables in Curl_multi_wait Also skip pre-checking sockets to set timeout_ms to 0 after the first socket has been detected to be ready. Reviewed-by: r
multi: align WinSock mask variables in Curl_multi_wait Also skip pre-checking sockets to set timeout_ms to 0 after the first socket has been detected to be ready. Reviewed-by: rcombs on github Reviewed-by: Daniel Stenberg Follow up to #5886
show more ...
|
40d67da7 | 12-Sep-2020 |
Marc Hoersken |
multi: reuse WinSock events variable in Curl_multi_wait Since the struct is quite large (1 long and 10 ints) we declare it once at the beginning of the function instead of multiple t
multi: reuse WinSock events variable in Curl_multi_wait Since the struct is quite large (1 long and 10 ints) we declare it once at the beginning of the function instead of multiple times inside loops to avoid stack movements. Reviewed-by: Viktor Szakats Reviewed-by: Daniel Stenberg Closes #5886
show more ...
|
af095999 | 16-Sep-2020 |
Daniel Stenberg |
TODO: dynamically decide to use socketpair Suggested-by: Anders Bakken Closes #4829 |
15f5d598 | 16-Sep-2020 |
Daniel Stenberg |
TODO: add PR reference for native IDN support on macOS As there was work started on this that never got completed. Closes #5371 |
ec6363be | 16-Sep-2020 |
Daniel Stenberg |
tool_help.h: update copyright year range Follow-up from aa8777f63febca |
1556b99f | 15-Sep-2020 |
Daniel Stenberg |
CI/azure: disable test 571 in the msys2 builds It's just too flaky there Reviewed-by: Marc Hoersken Closes #5954 |
0b4c4145 | 15-Sep-2020 |
Daniel Stenberg |
tool_writeout: protect fputs() from NULL When the code was changed to do fputs() instead of fprintf() it got sensitive for NULL pointers; add checks for that. Follow-up from 0c1
tool_writeout: protect fputs() from NULL When the code was changed to do fputs() instead of fprintf() it got sensitive for NULL pointers; add checks for that. Follow-up from 0c1e767e83ec66 Closes #5963
show more ...
|
2cc68572 | 15-Sep-2020 |
Daniel Stenberg |
test3015: verify stdout "as text" Follow-up from 0c1e767e83e to please win32 tests Closes #5962 |
9fe7b662 | 15-Sep-2020 |
Daniel Stenberg |
travis: use libressl v3.1.4 instead of master ... as their git master seems too fragile to use (and 3.2.1 which is the latest has a build failure). Closes #5964 |