allow SIGUSR1 to be used as an alternative to SIGHUP

this allows a tinyproxy session in terminal foreground mode to reload
its configuration without dropping active connections.
This commit is contained in:
rofl0r 2020-09-06 23:11:19 +01:00
parent 95b1a8ea06
commit 8c86e8b3ae

View File

@ -69,6 +69,7 @@ takesig (int sig)
int status;
switch (sig) {
case SIGUSR1:
case SIGHUP:
received_sighup = TRUE;
break;
@ -388,6 +389,7 @@ main (int argc, char **argv)
setup_sig (SIGCHLD, takesig, "SIGCHLD", argv[0]);
setup_sig (SIGTERM, takesig, "SIGTERM", argv[0]);
if (daemonized) setup_sig (SIGHUP, takesig, "SIGHUP", argv[0]);
setup_sig (SIGUSR1, takesig, "SIGUSR1", argv[0]);
/* Start the main loop */
log_message (LOG_INFO, "Starting main loop. Accepting connections.");