Commit 6acfdbd661a7373096e106f805bb2f4454a759d2

ckolivas 2013-05-09T13:36:34

Use MSG_NOSIGNAL on stratum send()

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/util.c b/util.c
index f599ac8..bcf9349 100644
--- a/util.c
+++ b/util.c
@@ -958,7 +958,7 @@ static enum send_ret __stratum_send(struct pool *pool, char *s, ssize_t len)
 		FD_SET(sock, &wd);
 		if (select(sock + 1, NULL, &wd, NULL, &timeout) < 1)
 			return SEND_SELECTFAIL;
-		sent = send(pool->sock, s + ssent, len, 0);
+		sent = send(pool->sock, s + ssent, len, MSG_NOSIGNAL);
 		if (sent < 0) {
 			if (!sock_blocks())
 				return SEND_SENDFAIL;