d3ca0771 | 25-Jan-2021 |
Tatsuhiro Tsujikawa |
ngtcp2: Fix http3 upload stall Closes #6521 |
a1338d42 | 25-Jan-2021 |
Tatsuhiro Tsujikawa |
ngtcp2: Fix stack buffer overflow Closes #6521 |
ad1c7154 | 26-Jan-2021 |
Daniel Stenberg |
warnless.h: remove the prototype for curlx_ultosi Follow-up to 217552503ff3 |
21755250 | 26-Jan-2021 |
Daniel Stenberg |
warnless: remove curlx_ultosi ... not used anywhere Closes #6530 |
234638ea | 24-Jan-2021 |
Patrick Monnerat |
lib: remove conn->data uses Closes #6515 |
7173fe98 | 25-Jan-2021 |
Daniel Stenberg |
pingpong: remove the 'conn' struct member ... as it's superfluous now when Curl_easy is passed in and we can derive the connection from that instead and avoid the duplicate copy.
pingpong: remove the 'conn' struct member ... as it's superfluous now when Curl_easy is passed in and we can derive the connection from that instead and avoid the duplicate copy. Closes #6525
show more ...
|
1dc8aa87 | 24-Jan-2021 |
Daniel Stenberg |
hostip/proxy: remove conn->data use Closes #6513 |
560fc170 | 24-Jan-2021 |
Daniel Stenberg |
url: reduce conn->data references ... there are a few left but let's keep them to last Closes #6512 |
df583434 | 26-Jan-2021 |
Daniel Stenberg |
scripts/singleuse: add curl_easy_option* |
782143ee | 25-Jan-2021 |
Jay Satiro |
test410: fix for windows - Pass the very long request header via file instead of command line. Prior to this change the 49k very long request header string was passed via comman
test410: fix for windows - Pass the very long request header via file instead of command line. Prior to this change the 49k very long request header string was passed via command line and on Windows that is too long so it was truncated and the test would fail (specifically msys CI). Closes https://github.com/curl/curl/pull/6516
show more ...
|
2dcc9409 | 25-Jan-2021 |
Daniel Stenberg |
libssh2: move data from connection object to transfer object Readdir data, filenames and attributes are strictly related to the transfer and not the connection. This also reduces the tot
libssh2: move data from connection object to transfer object Readdir data, filenames and attributes are strictly related to the transfer and not the connection. This also reduces the total size of the fixed connectdata struct. Closes #6519
show more ...
|
abfb0b57 | 25-Jan-2021 |
Daniel Stenberg |
RELEASE-NOTES: synced |
ecb13416 | 20-Jan-2021 |
Patrick Monnerat |
lib: remove conn->data uses Closes #6499 |
14e075d1 | 21-Jan-2021 |
Daniel Stenberg |
hyper: remove the conn->data references Closes #6508 |
b371d267 | 21-Jan-2021 |
Daniel Stenberg |
travis: build ngtcp2 --with-gnutls ... since they disable it by default since a few days back. Closes #6506 Fixes #6493 |
8335c641 | 20-Jan-2021 |
Daniel Stenberg |
hostip: remove conn->data from resolver functions This also moves the 'async' struct from the connectdata struct into the Curl_easy struct, which seems like a better home for it.
hostip: remove conn->data from resolver functions This also moves the 'async' struct from the connectdata struct into the Curl_easy struct, which seems like a better home for it. Closes #6497
show more ...
|
d3a3bdb5 | 21-Jan-2021 |
Jay Satiro |
strerror: skip errnum >= 0 assertion on windows On Windows an error number may be greater than INT_MAX and negative once cast to int. The assertion is checked only in debug buil
strerror: skip errnum >= 0 assertion on windows On Windows an error number may be greater than INT_MAX and negative once cast to int. The assertion is checked only in debug builds. Closes https://github.com/curl/curl/pull/6504
show more ...
|
b97a60f5 | 21-Jan-2021 |
Daniel Stenberg |
doh: make Curl_doh_is_resolved survive a NULL pointer ... if Curl_doh() returned a NULL, this function gets called anyway as in a asynch procedure. Then the doh struct pointer is NULL an
doh: make Curl_doh_is_resolved survive a NULL pointer ... if Curl_doh() returned a NULL, this function gets called anyway as in a asynch procedure. Then the doh struct pointer is NULL and signifies an OOM situation. Follow-up to 6246a1d8c6776
show more ...
|
5a19cb5a | 21-Jan-2021 |
Daniel Stenberg |
wolfssh: remove conn->data references ... and repair recent build breakage Closes #6507 |
e8710633 | 21-Jan-2021 |
Daniel Stenberg |
http: empty reply connection are not left intact ... so mark the connection as closed in this condition to prevent that verbose message to wrongly appear. Reported-by: Matt Holt
http: empty reply connection are not left intact ... so mark the connection as closed in this condition to prevent that verbose message to wrongly appear. Reported-by: Matt Holt Bug: https://twitter.com/mholt6/status/1352130240265375744 Closes #6503
show more ...
|
c977a6d0 | 20-Jan-2021 |
Daniel Stenberg |
chunk/encoding: remove conn->data references ... by anchoring more functions on Curl_easy instead of connectdata Closes #6498 |
0a582757 | 16-Jan-2021 |
Erik Olsson |
lib: save a bit of space with some structure packing - Reorder some internal struct members so that less padding is used. This is an attempt at saving a bit of space by packing some
lib: save a bit of space with some structure packing - Reorder some internal struct members so that less padding is used. This is an attempt at saving a bit of space by packing some structs (using pahole to find the holes) where it might make sense to do so without losing readability. I.e., I tried to avoid separating fields that seem grouped together (like the cwd... fields in struct ftp_conn for instance). Also abstained from touching fields behind conditional macros as that quickly can get complicated. Closes https://github.com/curl/curl/pull/6483
show more ...
|
46f47363 | 20-Jan-2021 |
Daniel Stenberg |
INSTALL.md: fix typo Found-by: Marcel Raad |
0015e061 | 19-Jan-2021 |
Fabian Keil |
http: get CURLOPT_REQUEST_TARGET working with a HTTP proxy Added test 1613 to verify. Closes #6490 |
86a95eb0 | 20-Jan-2021 |
Daniel Stenberg |
Merge branch 'bagder/curl_range-data-conn'
|