Emit a ALERT_SHUTDOWN_SIGNAL before shutting down the daemon
This commit is contained in:
@@ -133,6 +133,8 @@ enum level_t {
|
|||||||
enum alert_t {
|
enum alert_t {
|
||||||
/* a RADIUS server did not respond, no additional arguments */
|
/* a RADIUS server did not respond, no additional arguments */
|
||||||
ALERT_RADIUS_NOT_RESPONDING,
|
ALERT_RADIUS_NOT_RESPONDING,
|
||||||
|
/* a shutdown signal has been received, argument is a int with the signal */
|
||||||
|
ALERT_SHUTDOWN_SIGNAL,
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -145,11 +145,13 @@ static void run(private_daemon_t *this)
|
|||||||
case SIGINT:
|
case SIGINT:
|
||||||
{
|
{
|
||||||
DBG1(DBG_DMN, "signal of type SIGINT received. Shutting down");
|
DBG1(DBG_DMN, "signal of type SIGINT received. Shutting down");
|
||||||
|
charon->bus->alert(charon->bus, ALERT_SHUTDOWN_SIGNAL, sig);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
case SIGTERM:
|
case SIGTERM:
|
||||||
{
|
{
|
||||||
DBG1(DBG_DMN, "signal of type SIGTERM received. Shutting down");
|
DBG1(DBG_DMN, "signal of type SIGTERM received. Shutting down");
|
||||||
|
charon->bus->alert(charon->bus, ALERT_SHUTDOWN_SIGNAL, sig);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
|||||||
Reference in New Issue
Block a user