- Oct 22, 2016
-
-
Daniel Stenberg authored
-
- Oct 21, 2016
-
-
Daniel Stenberg authored
Also heavily edited for content. Removed lots of old cruft that we added like 10+ years ago that is likely incorrect by now. Also removed INSTALL.devcpp for same reason.
-
- Oct 20, 2016
-
-
Martin Storsjo authored
In addition to -miphoneos-version-min, the same version can be set using -mios-version-min. And for WatchOS and TvOS, there's -mwatchos-version-min and -mtvos-version-min.
-
Daniel Stenberg authored
This helps building binaries that can work on multiple macOS versions. Help-by: Martin Storsjö Fixes #1069
-
- Oct 19, 2016
-
-
Daniel Stenberg authored
The closure handle only ever has default timeouts set. To improve the state somewhat we clone the timeouts from each added handle so that the closure handle always has the same timeouts as the most recently added easy handle. Fixes #739
-
- Oct 18, 2016
-
-
Daniel Stenberg authored
... so that the same libcurl build easier can run on any version. Follow-up to issue #1057
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
The tool was never called cURL, only the project. But even so, we have more and more over time switched to just use lower case.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
-
Daniel Stenberg authored
... since if it fails to init the entire array and then tries to clean it up, it would attempt to work on an uninitialized pointer.
-
Daniel Stenberg authored
As otherwise the callback could be called with a NULL pointer when RTSP data is provided.
-
Daniel Stenberg authored
-
Daniel Stenberg authored
Curl_select_ready() was the former API that was replaced with Curl_select_check() a while back and the former arg setup was provided with a define (in order to leave existing code unmodified). Now we instead offer SOCKET_READABLE and SOCKET_WRITABLE for the most common shortcuts where only one socket is checked. They're also more visibly macros.
-
Daniel Stenberg authored
... so that it becomes more obvious in the code what is what. Also added a typecast for one of the calculations.
-
Daniel Stenberg authored
-
- Oct 17, 2016
-
-
Daniel Stenberg authored
... to allow you to update the local repository with the given version number data.
-
Jay Satiro authored
- Change back behavior so that pipelining is considered possible for connections that have not yet reached the protocol level. This is a follow-up to e5f0b1ab which had changed the behavior of checking if pipelining is possible to ignore connections that had 'bits.close' set. Connections that have not yet reached the protocol level also have that bit set, and we need to consider pipelining possible on those connections.
-
Daniel Stenberg authored
-
- Oct 16, 2016
-
-
Daniel Stenberg authored
-
David Woodhouse authored
There were bugs in the PKCS#11 engine, and fixing them triggers bugs in OpenSSL. Just don't get involved; there's no need to be making the engine methods the default anyway. https://github.com/OpenSC/libp11/pull/108 https://github.com/openssl/openssl/pull/1639 Merges #1042
-
Daniel Stenberg authored
-
Marcel Raad authored
This fixes a merge error in commit 7f3df804 caused by commit 332e8d61. Additionally, this changes Curl_verify_windows_version for Windows App builds to assume to always be running on the target Windows version. There seems to be no way to determine the Windows version from a UWP app. Neither GetVersion(Ex), nor VerifyVersionInfo, nor the Version Helper functions are supported. Bug: https://github.com/curl/curl/pull/820#issuecomment-250889878 Reported-by: Paul Joyce Closes https://github.com/curl/curl/pull/1048
-
Daniel Stenberg authored
-
- Oct 14, 2016
-
-
Rider Linden authored
No longer attempt to use "doomed" to-be-closed connections when pipelining. Prior to this change connections marked for deletion (e.g. timeout) would be erroneously used, resulting in sporadic crashes. As originally reported and fixed by Carlo Wood (origin unknown). Bug: https://github.com/curl/curl/issues/627 Reported-by: Rider Linden Closes https://github.com/curl/curl/pull/1075 Participation-by: <nopjmp@users.noreply.github.com>
-
- Oct 13, 2016
-
-
Daniel Stenberg authored
To make it harder to do cross-protocol mistakes
-
- Oct 12, 2016
-
-
Torben Dannhauer authored
Closes https://github.com/curl/curl/pull/1070
-
- Oct 11, 2016
-
-
Daniel Stenberg authored
Fixes #1057
-
- Oct 10, 2016
-
-
Daniel Stenberg authored
-
Remo E authored
Closes #922
-
Andreas Streichardt authored
Closes #1066
-
Daniel Stenberg authored
There shouldn't be many devs out there anymore using such outdated macOS versions. And it removes the dead link. Closes #1049
-
Daniel Stenberg authored
-
Daniel Stenberg authored
5 more fixes, 2 more contributors
-
- Oct 08, 2016
-
-
Tobias Stoeckmann authored
Not all reply messages were properly checked for their lengths, which made it possible to access uninitialized memory (but this does not lead to out of boundary accesses). Closes #1052
-
Daniel Stenberg authored
-
Daniel Stenberg authored
128 arguments should be enough for everyone
-
Daniel Stenberg authored
... it no longer takes printf() arguments since it was only really taken advantage by one user and it was not written and used in a safe way. Thus the 'f' is removed from the function name and the proto is changed. Although the current code wouldn't end up in badness, it was a risk that future changes could end up springf()ing too large data or passing in a format string inadvertently.
-