aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVenkatesh Srinivas <me@endeavour.zapto.org>2011-08-07 12:18:05 -0400
committerJeff Garzik <jgarzik@pobox.com>2011-08-10 22:36:20 -0400
commitec93a0e2197e8a84789c6c512cee90a66a11f82a (patch)
tree8a9d7cab5e68f6b9cc0795d9f8aa4f187bee3869
parent9f0ac16942d9f15ec57204448436cd429badf481 (diff)
downloadbitcoin-ec93a0e2197e8a84789c6c512cee90a66a11f82a.tar.xz
Test for SO_NOSIGPIPE rather than assuming all BSDs support it.
Signed-off-by: Jeff Garzik <jgarzik@exmulti.com>
-rw-r--r--src/net.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net.cpp b/src/net.cpp
index 37adc13e14..b52af24a55 100644
--- a/src/net.cpp
+++ b/src/net.cpp
@@ -98,7 +98,7 @@ bool ConnectSocket(const CAddress& addrConnect, SOCKET& hSocketRet, int nTimeout
SOCKET hSocket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
if (hSocket == INVALID_SOCKET)
return false;
-#ifdef BSD
+#ifdef SO_NOSIGPIPE
int set = 1;
setsockopt(hSocket, SOL_SOCKET, SO_NOSIGPIPE, (void*)&set, sizeof(int));
#endif
@@ -1584,7 +1584,7 @@ bool BindListenPort(string& strError)
return false;
}
-#ifdef BSD
+#ifdef SO_NOSIGPIPE
// Different way of disabling SIGPIPE on BSD
setsockopt(hListenSocket, SOL_SOCKET, SO_NOSIGPIPE, (void*)&nOne, sizeof(int));
#endif