Ignore SIGPIPE (force checking of EPIPE instead).

This commit is contained in:
Michael Jumper 2011-03-19 16:50:18 -07:00
parent 1b326b9cfb
commit b52a49d7b0

View File

@ -39,6 +39,7 @@
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <signal.h>
#include <sys/types.h>
#ifdef __MINGW32__
@ -103,7 +104,6 @@ void* start_client_thread(void* data) {
}
guac_start_client(client);
guac_free_client(client);
/* Close socket */
@ -235,6 +235,11 @@ int main(int argc, char* argv[]) {
/* Otherwise, this is the daemon */
GUAC_LOG_INFO("Started, listening on port %i", listen_port);
/* Ignore SIGPIPE */
if (signal(SIGPIPE, SIG_IGN) == SIG_ERR) {
GUAC_LOG_ERROR("Could not set handler for SIGPIPE to ignore. SIGPIPE will cause termination of the daemon.");
}
/* Daemon loop */
for (;;) {