Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-01-28 | sigpipe: if mbedTLS is used, ignore SIGPIPE | Jeremie Rapin | |
mbedTLS doesn't have a sigpipe management. If a write/read occurs when the remote closes the socket, the signal is raised and kills the application. Use the curl mecanisms fix this behavior. Signed-off-by: Jeremie Rapin <j.rapin@overkiz.com> Closes #3502 | |||
2016-06-22 | internals: rename the SessionHandle struct to Curl_easy | Daniel Stenberg | |
2016-02-03 | URLs: change all http:// URLs to https:// | Daniel Stenberg | |
2013-11-27 | sigpipe: factor out sigpipe_reset from easy.c | Jeff King | |
Commit 7d80ed64e43515 introduced some helpers to handle sigpipe in easy.c. However, that fix was incomplete, and we need to add more callers in other files. The first step is making the helpers globally accessible. Since the functions are small and should generally end up inlined anyway, we simply define them in the header as static functions. Signed-off-by: Jeff King <peff@peff.net> |