Killing tincd with SIGINT causes it to toggle between the current
authorIvo Timmermans <ivo@lychnis.net>
Wed, 5 Sep 2001 18:38:09 +0000 (18:38 +0000)
committerIvo Timmermans <ivo@lychnis.net>
Wed, 5 Sep 2001 18:38:09 +0000 (18:38 +0000)
debug level and level 5.  Useful to debug a running tincd.

src/process.c

index 37b3186e68508424c3e23a5b358a27103c3a2a1c..f395496fa2e53c18ff460a5647360d1bb9e10aa9 100644 (file)
@@ -17,7 +17,7 @@
     along with this program; if not, write to the Free Software
     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
 
-    $Id: process.c,v 1.1.2.24 2001/09/01 12:36:53 guus Exp $
+    $Id: process.c,v 1.1.2.25 2001/09/05 18:38:09 zarq Exp $
 */
 
 #include "config.h"
@@ -55,6 +55,8 @@ extern char **g_argv;
 
 sigset_t emptysigset;
 
+static int saved_debug_lvl = 0;
+
 void memory_full(int size)
 {
   syslog(LOG_ERR, _("Memory exhausted (couldn't allocate %d bytes), exiting."), size);
@@ -351,9 +353,20 @@ sighup_handler(int a, siginfo_t *info, void *b)
 RETSIGTYPE
 sigint_handler(int a, siginfo_t *info, void *b)
 {
-  if(debug_lvl > DEBUG_NOTHING)
-    syslog(LOG_NOTICE, _("Got INT signal, exiting"));
-  cleanup_and_exit(0);
+  if(saved_debug_lvl)
+    {
+      syslog(LOG_NOTICE, _("Reverting to old debug level (%d)"),
+            saved_debug_lvl);
+      debug_lvl = saved_debug_lvl;
+      saved_debug_lvl = 0;
+    }
+  else
+    {
+      syslog(LOG_NOTICE, _("Temporarily setting debug level to 5.  Kill me with SIGINT again to go back to level %d."),
+            debug_lvl);
+      saved_debug_lvl = debug_lvl;
+      debug_lvl = 5;
+    }
 }
 
 RETSIGTYPE