mirror of
https://github.com/moonlight-stream/moonlight-common-c.git
synced 2026-06-17 14:21:30 +00:00
Merge branch 'master' into api-1.1
This commit is contained in:
@@ -110,6 +110,7 @@ int initializePlatformSockets(void) {
|
|||||||
// Disable SIGPIPE signals to avoid us getting
|
// Disable SIGPIPE signals to avoid us getting
|
||||||
// killed when a socket gets an EPIPE error
|
// killed when a socket gets an EPIPE error
|
||||||
struct sigaction sa;
|
struct sigaction sa;
|
||||||
|
sigemptyset(&sa.sa_mask);
|
||||||
sa.sa_handler = SIG_IGN;
|
sa.sa_handler = SIG_IGN;
|
||||||
sa.sa_flags = 0;
|
sa.sa_flags = 0;
|
||||||
if (sigaction(SIGPIPE, &sa, 0) == -1) {
|
if (sigaction(SIGPIPE, &sa, 0) == -1) {
|
||||||
|
|||||||
Reference in New Issue
Block a user