Merge pull request #1319 from metalefty/sighup

xrdp: do not exit when caught SIGHUP
This commit is contained in:
metalefty 2019-11-21 18:42:52 +09:00 committed by GitHub
commit 352107fc5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -163,6 +163,13 @@ xrdp_child(int sig)
}
}
/*****************************************************************************/
void
xrdp_hang_up(int sig)
{
log_message(LOG_LEVEL_INFO, "caught SIGHUP, noop...");
}
/*****************************************************************************/
/* called in child just after fork */
int
@ -647,6 +654,7 @@ main(int argc, char **argv)
g_signal_pipe(pipe_sig); /* SIGPIPE */
g_signal_terminate(xrdp_shutdown); /* SIGTERM */
g_signal_child_stop(xrdp_child); /* SIGCHLD */
g_signal_hang_up(xrdp_hang_up); /* SIGHUP */
g_sync_mutex = tc_mutex_create();
g_sync1_mutex = tc_mutex_create();
pid = g_getpid();