summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremie Rapin <j.rapin@overkiz.com>2019-01-23 15:35:46 +0100
committerDaniel Stenberg <daniel@haxx.se>2019-01-28 12:03:33 +0100
commita9d9a3abbec55ad80d615db4cd74218067df2c33 (patch)
treef6a6e51329d4d52f2a8fdd8fcd0a0ca7f62d295a
parent1b8fe0a8ae8eb171799da50f4b3b9acea91d1b56 (diff)
downloadcurl-a9d9a3abbec55ad80d615db4cd74218067df2c33.tar.gz
sigpipe: if mbedTLS is used, ignore SIGPIPE
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
-rw-r--r--lib/sigpipe.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/sigpipe.h b/lib/sigpipe.h
index 800f9d3b4..3960a139d 100644
--- a/lib/sigpipe.h
+++ b/lib/sigpipe.h
@@ -7,7 +7,7 @@
* | (__| |_| | _ <| |___
* \___|\___/|_| \_\_____|
*
- * Copyright (C) 1998 - 2013, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 1998 - 2019, Daniel Stenberg, <daniel@haxx.se>, et al.
*
* This software is licensed as described in the file COPYING, which
* you should have received as part of this distribution. The terms
@@ -23,7 +23,8 @@
***************************************************************************/
#include "curl_setup.h"
-#if defined(HAVE_SIGNAL_H) && defined(HAVE_SIGACTION) && defined(USE_OPENSSL)
+#if defined(HAVE_SIGNAL_H) && defined(HAVE_SIGACTION) && \
+ (defined(USE_OPENSSL) || defined(USE_MBEDTLS))
#include <signal.h>
struct sigpipe_ignore {