Skip to content

Commit cb0af50

Browse files
authored
Merge pull request #150 from keab42/bugfix/fix-sigpipe-13-error
Disabling SIGPIPE errors on UDP Client.
2 parents 7cd6d8e + ee34b7a commit cb0af50

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Sources/yudpsocket.c

+4
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,10 @@ int yudpsocket_client() {
9595
int socketfd = socket(AF_INET, SOCK_DGRAM, 0);
9696
int reuseon = 1;
9797
setsockopt(socketfd, SOL_SOCKET, SO_REUSEADDR, &reuseon, sizeof(reuseon));
98+
99+
//disable SIGPIPE as we'll handle send errors ourselves
100+
int noSigPipe = 1;
101+
setsockopt(socketfd, SOL_SOCKET, SO_NOSIGPIPE, &noSigPipe, sizeof(noSigPipe));
98102

99103
return socketfd;
100104
}

0 commit comments

Comments
 (0)