fb2839db | 08-Jun-2019 |
Sorcus |
libcurl-tutorial.3: Fix small typo (mutipart -> multipart) Fixed-by: MrSorcus on github Closes #4000 |
680f1413 | 08-Jun-2019 |
Daniel Stenberg |
unpause: trigger a timeout for event-based transfers ... so that timeouts or other state machine actions get going again after a changing pause state. For example, if the last delivery w
unpause: trigger a timeout for event-based transfers ... so that timeouts or other state machine actions get going again after a changing pause state. For example, if the last delivery was paused there's no pending socket activity. Reported-by: sstruchtrup on github Fixes #3994 Closes #4001
show more ...
|
cf1ec70e | 09-Jun-2019 |
Marcel Raad |
travis: use xenial LLVM package for scan-build I missed that in commit 99a49d6. |
99a49d66 | 08-Jun-2019 |
Marcel Raad |
travis: update scan-build job to xenial Closes https://github.com/curl/curl/pull/3999 |
4ae6b5bb | 08-Jun-2019 |
Daniel Stenberg |
bump: start working on 7.65.2 |
e1f3aaea | 25-May-2019 |
Marcel Raad |
examples/htmltitle: use C++ casts between pointer types Compilers and static analyzers warn about using C-style casts here. Closes https://github.com/curl/curl/pull/3975 |
992083b1 | 25-May-2019 |
Marcel Raad |
examples/fopen: fix comparison As want is size_t, (file->buffer_pos - want) is unsigned, so checking if it's less than zero makes no sense. Check if file->buffer_pos is less than wan
examples/fopen: fix comparison As want is size_t, (file->buffer_pos - want) is unsigned, so checking if it's less than zero makes no sense. Check if file->buffer_pos is less than want instead to avoid the unsigned integer wraparound. Closes https://github.com/curl/curl/pull/3975
show more ...
|
e23c52b3 | 25-May-2019 |
Marcel Raad |
build: fix Codacy warnings Reduce variable scopes and remove redundant variable stores. Closes https://github.com/curl/curl/pull/3975 |
04ac54e1 | 25-May-2019 |
Marcel Raad |
sws: remove unused variables Unused since commit 2f44e94. Closes https://github.com/curl/curl/pull/3975 |
69248b58 | 02-Jun-2019 |
Daniel Stenberg |
RELEASE-NOTES: 7.65.1 |
fde3ae46 | 02-Jun-2019 |
Daniel Stenberg |
THANKS: new contributors from 7.65.1 |
66060314 | 04-Jun-2019 |
Frank Gevaerts |
ssl: Update outdated "openssl-only" comments for supported backends These are for features that used to be openssl-only but were expanded over time to support other SSL backends.
ssl: Update outdated "openssl-only" comments for supported backends These are for features that used to be openssl-only but were expanded over time to support other SSL backends. Closes #3985
show more ...
|
be527afa | 04-Jun-2019 |
Daniel Stenberg |
curl_share_setopt.3: improve wording [ci ship] Reported-by: Carlos ORyan |
3538026f | 02-Jun-2019 |
Steve Holme |
tool_parsecfg: Use correct return type for GetModuleFileName() GetModuleFileName() returns a DWORD which is a typedef of an unsigned long and not an int. Closes #3980 |
8c88e8e6 | 03-Jun-2019 |
Daniel Stenberg |
TODO: "at least N milliseconds between requests" [ci skip] Suggested-by: dkwolfe4 on github Closes #3920 |
5f2a103f | 02-Jun-2019 |
Steve Holme |
tests/server/.gitignore: Add socksd to the ignore list Missed in 04fd6755. Closes #3978 |
80b42e74 | 02-Jun-2019 |
Steve Holme |
tool_parsecfg: Fix control flow issue (DEADCODE) Follow-up to 8144ba38. Detected by Coverity CID 1445663 Closes #3976 |
f9b60fb6 | 31-May-2019 |
Sergey Ogryzkov |
NTLM: reset proxy "multipass" state when CONNECT request is done Closes #3972 |
b6b8f3a3 | 02-Jun-2019 |
Daniel Stenberg |
test334: verify HTTP 204 response with chunked coding header Verifies that a bodyless response don't parse this content-related header. |
2e5ceb39 | 02-Jun-2019 |
Michael Kaufmann |
http: don't parse body-related headers bodyless responses Responses with status codes 1xx, 204 or 304 don't have a response body. For these, don't parse these headers: - Content
http: don't parse body-related headers bodyless responses Responses with status codes 1xx, 204 or 304 don't have a response body. For these, don't parse these headers: - Content-Encoding - Content-Length - Content-Range - Last-Modified - Transfer-Encoding This change ensures that HTTP/2 upgrades work even if a "Content-Length: 0" or a "Transfer-Encoding: chunked" header is present. Co-authored-by: Daniel Stenberg Closes #3702 Fixes #3968 Closes #3977
show more ...
|
7e590b3e | 27-May-2019 |
Daniel Stenberg |
tls13-docs: mention it is only for OpenSSL >= 1.1.1 Reported-by: Jay Satiro Co-authored-by: Jay Satiro Fixes #3938 Closes #3946 |
ca09d965 | 31-May-2019 |
Daniel Stenberg |
dump-header.d: spell out that no headers == empty file [ci skip] Reported-by: wesinator at github Fixes #3964 Closes #3974 |
c36f4283 | 31-May-2019 |
Daniel Stenberg |
singlesocket: use separate variable for inner loop An inner loop within the singlesocket() function wrongly re-used the variable for the outer loop which then could cause an infinite
singlesocket: use separate variable for inner loop An inner loop within the singlesocket() function wrongly re-used the variable for the outer loop which then could cause an infinite loop. Change to using a separate variable! Reported-by: Eric Wu Fixes #3970 Closes #3973
show more ...
|
d3d04a87 | 31-May-2019 |
Daniel Stenberg |
RELEASE-NOTES: synced |
1c0e9527 | 29-May-2019 |
Josie Huddleston |
http2: Stop drain from being permanently set on Various functions called within Curl_http2_done() can have the side-effect of setting the Easy connection into drain mode (by calling
http2: Stop drain from being permanently set on Various functions called within Curl_http2_done() can have the side-effect of setting the Easy connection into drain mode (by calling drain_this()). However, the last time we unset this for a transfer (by calling drained_transfer()) is at the beginning of Curl_http2_done(). If the Curl_easy is reused for another transfer, it is then stuck in drain mode permanently, which in practice makes it unable to write any data in the new transfer. This fix moves the last call to drained_transfer() to later in Curl_http2_done(), after the functions that could potentially call for a drain. Fixes #3966 Closes #3967 Reported-by: Josie-H
show more ...
|