ae15bfc9 | 22-Apr-2020 |
Daniel Stenberg |
RELEASE-NOTES: synced |
f807d163 | 22-Apr-2020 |
Brian Bergeron |
curl.h: update comment typo "routines with be invoked" -> "routines will be invoked" Closes #5279 |
2d137ded | 20-Apr-2020 |
Emil Engler |
GnuTLS: Don't skip really long certificate fields Closes #5271 |
0891fe7a | 20-Apr-2020 |
Daniel Stenberg |
gnutls: bump lowest supported version to 3.1.10 GnuTLS 3.1.10 added new functions we want to use. That version was released on Mar 22, 2013. Removing support for older versions also
gnutls: bump lowest supported version to 3.1.10 GnuTLS 3.1.10 added new functions we want to use. That version was released on Mar 22, 2013. Removing support for older versions also greatly simplifies the code. Ref: #5271 Closes #5276
show more ...
|
10fece33 | 20-Apr-2020 |
Daniel Stenberg |
mqtt: make NOSTATE get within the debug name array |
bae87dc0 | 20-Apr-2020 |
Daniel Stenberg |
tests: run the RTSP test server on a dynamic port number To avoid port collisions. Closes #5272 |
018dd775 | 20-Apr-2020 |
Daniel Stenberg |
tests: add %NOLISTENPORT and use it The purpose with this variable is to provide a port number that is reasonably likely to not have a listener on the local host so that tests can tr
tests: add %NOLISTENPORT and use it The purpose with this variable is to provide a port number that is reasonably likely to not have a listener on the local host so that tests can try connect failures against it. It uses port 47 - "reserved" according to IANA. Updated six tests to use it instead of the previous different ports. Assisted-by: Emil Engler Closes #5270
show more ...
|
093a9e00 | 20-Apr-2020 |
Daniel Stenberg |
mqtt: remove code with no purpose Detected by Coverity. CID 1462319. "The same code is executed when the condition result is true or false, because the code in the if-then branc
mqtt: remove code with no purpose Detected by Coverity. CID 1462319. "The same code is executed when the condition result is true or false, because the code in the if-then branch and after the if statement is identical." Closes #5275
show more ...
|
96c14968 | 20-Apr-2020 |
Daniel Stenberg |
mqtt: fix Curl_read() error handling while reading remaining length Detected by Coverity. CID 1462320. Closes #5274 |
fa7daafd | 20-Apr-2020 |
Daniel Stenberg |
server/tftpd: fix compiler warning Follow-up from 369ce38ac1d Reported-by: Marc Hörsken |
df28ed61 | 20-Apr-2020 |
Daniel Stenberg |
http: free memory when Alt-Used header creation fails due to OOM Reported-by: James Fuller Fixes #5268 Closes #5269 |
10822c65 | 20-Apr-2020 |
Daniel Gustafsson |
lib: fix typos in comments and errormessages This fixes a few randomly spotted typos in recently merged code, most notably one in a userfacing errormessage the schannel code. |
bcd98135 | 19-Apr-2020 |
Daniel Stenberg |
tests: run the SOCKS test server on a dynamic port number Closes #5266 |
ff7a3107 | 17-Apr-2020 |
Johannes Schindelin |
multi-ssl: reset the SSL backend on `Curl_global_cleanup()` When cURL is compiled with support for multiple SSL backends, it is possible to configure an SSL backend via `curl_global_ssls
multi-ssl: reset the SSL backend on `Curl_global_cleanup()` When cURL is compiled with support for multiple SSL backends, it is possible to configure an SSL backend via `curl_global_sslset()`, but only *before* `curl_global_init()` was called. If another SSL backend should be used after that, a user might be tempted to call `curl_global_cleanup()` to start over. However, we did not foresee that use case and forgot to reset the SSL backend in that cleanup. Let's allow that use case. Fixes #5255 Closes #5257 Reported-by: davidedec on github Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
show more ...
|
369ce38a | 19-Apr-2020 |
Daniel Stenberg |
tests: run the TFTP test server on a dynamic port number Picking a dynamic unused port is better than a fixed to avoid the collision risk. Closes #5265 |
5811beba | 16-Apr-2020 |
Daniel Stenberg |
mqtt: improve the state machine To handle PUBLISH before SUBACK and more. Updated the existing tests and added three new ones. Reported-by: Christoph Krey Bug: https://
mqtt: improve the state machine To handle PUBLISH before SUBACK and more. Updated the existing tests and added three new ones. Reported-by: Christoph Krey Bug: https://curl.haxx.se/mail/lib-2020-04/0021.html Closes #5246
show more ...
|
d1a2816b | 16-Apr-2020 |
Daniel Stenberg |
runtests: always put test number in servercmd file |
8dea7820 | 20-Apr-2020 |
Daniel Stenberg |
RELEASE-NOTES: synced |
3c77e280 | 20-Apr-2020 |
Daniel Stenberg |
release-notes.pl: fix parsing typo |
4d925eee | 19-Apr-2020 |
xquery |
ensure all references to ports are replaced by vars |
aa98c66e | 19-Apr-2020 |
xquery |
add more alt-svc test coverage |
d2969c7a | 19-Apr-2020 |
Daniel Stenberg |
test1247: use http server to get the port number set Follow-up to 0f5db7b263f |
ebb07f3c | 19-Apr-2020 |
Daniel Stenberg |
runtests: use a unix domain socket path with the pid in the name To make it impossible for test cases to access the file name without using the proper variable for the purpose.
runtests: use a unix domain socket path with the pid in the name To make it impossible for test cases to access the file name without using the proper variable for the purpose. Closes #5264
show more ...
|
207a6cbb | 17-Apr-2020 |
Tom |
src: Remove C99 constructs to ensure C89 compliance This fixes the error: 'for' loop initial declaration used outside C99 mode by declaring the loop increment variable in the beginning o
src: Remove C99 constructs to ensure C89 compliance This fixes the error: 'for' loop initial declaration used outside C99 mode by declaring the loop increment variable in the beginning of the block instead of inside the for loop. Fixes #5254 Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
show more ...
|
0f5db7b2 | 19-Apr-2020 |
Daniel Stenberg |
runtests: dummy init the ports variables to avoid warnings ... and generate something that can help debug test cases. |