--- embedaddon/strongswan/src/charon-nm/nm/nm_backend.c 2020/06/03 09:46:44 1.1.1.1 +++ embedaddon/strongswan/src/charon-nm/nm/nm_backend.c 2021/03/17 00:20:08 1.1.1.2 @@ -14,6 +14,9 @@ * for more details. */ +#include +#include + #include "nm_service.h" #include "nm_creds.h" #include "nm_handler.h" @@ -55,11 +58,20 @@ struct nm_backend_t { static nm_backend_t *nm_backend = NULL; /** + * Terminate the daemon if signaled by NM + */ +static void terminate(void *plugin, void *arg) +{ + kill(getpid(), SIGTERM); +} + +/** * NM plugin processing routine, creates and handles NMVpnServicePlugin */ static job_requeue_t run(nm_backend_t *this) { this->loop = g_main_loop_new(NULL, FALSE); + g_signal_connect(this->plugin, "quit", G_CALLBACK(terminate), NULL); g_main_loop_run(this->loop); return JOB_REQUEUE_NONE; }