diff options
author | Martin Willi <martin@strongswan.org> | 2005-11-29 11:27:25 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2005-11-29 11:27:25 +0000 |
commit | e85220af90ac154e9badeece3aaaab30973f648f (patch) | |
tree | e2c0add009b46d5197216ba735fb513fcf5a03be /Source/charon/daemon.h | |
parent | 2326633550ee256c0dfda5dc2111811dc0877a58 (diff) | |
download | strongswan-e85220af90ac154e9badeece3aaaab30973f648f.tar.bz2 strongswan-e85220af90ac154e9badeece3aaaab30973f648f.tar.xz |
- fixed kill behavior
Diffstat (limited to 'Source/charon/daemon.h')
-rw-r--r-- | Source/charon/daemon.h | 6 |
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); }; /** |