summaryrefslogtreecommitdiffstats
path: root/stream/network.h
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-06-27 15:04:13 +0000
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-11-02 04:11:43 +0200
commit41d25ebcc8bc8601bd66f5435c75fdff25cadc17 (patch)
tree6cf36aab161902d1b1cd508e89e0acfaf1592c18 /stream/network.h
parente55135212138800f0107247c1f3ded81366cd123 (diff)
downloadmpv-41d25ebcc8bc8601bd66f5435c75fdff25cadc17.tar.bz2
mpv-41d25ebcc8bc8601bd66f5435c75fdff25cadc17.tar.xz
stream: Use MSG_NOSIGNAL flag if available for send().
This avoids MPlayer quitting due to SIGPIPE at least for these cases. Ignoring SIGPIPE in general would break window-closing with some window-managers. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31566 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream/network.h')
-rw-r--r--stream/network.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/stream/network.h b/stream/network.h
index b842b1ed24..897f697304 100644
--- a/stream/network.h
+++ b/stream/network.h
@@ -39,6 +39,12 @@
#include "url.h"
#include "http.h"
+#ifdef MSG_NOSIGNAL
+#define DEFAULT_SEND_FLAGS MSG_NOSIGNAL
+#else
+#define DEFAULT_SEND_FLAGS 0
+#endif
+
#if !HAVE_CLOSESOCKET
#define closesocket close
#endif