aboutsummaryrefslogtreecommitdiffstats
path: root/Source/charon/daemon.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/charon/daemon.h')
-rw-r--r--Source/charon/daemon.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/charon/daemon.h b/Source/charon/daemon.h
index 872c7fa27..651ed0370 100644
--- a/Source/charon/daemon.h
+++ b/Source/charon/daemon.h
@@ -48,7 +48,7 @@
* There are several other threads, this defines
* only the number of threads in thread_pool_t.
*/
-#define NUMBER_OF_WORKING_THREADS 1
+#define NUMBER_OF_WORKING_THREADS 4
/**
* Port on which the daemon will
@@ -121,10 +121,10 @@ struct daemon_t {
/**
* @brief shut down the daemon
*
- * @param this the daemon to kill
+ * @param this the daemon to kill
* @param reason describition why it will be killed
*/
- void (*destroy) (daemon_t *this, char *reason);
+ void (*kill) (daemon_t *this, char *reason);
};
/**