diff options
author | Martin Willi <martin@strongswan.org> | 2006-10-18 11:46:13 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2006-10-18 11:46:13 +0000 |
commit | 60356f3375da67375e48691bb1d732c02d1681a1 (patch) | |
tree | 1bfa3bd28d46c4211a17a831094e7fcbceea8bb6 /src/charon/daemon.h | |
parent | 8cdce67afa4bc4b4ff1a05e956db08cddc5dc48e (diff) | |
download | strongswan-60356f3375da67375e48691bb1d732c02d1681a1.tar.bz2 strongswan-60356f3375da67375e48691bb1d732c02d1681a1.tar.xz |
introduced new logging subsystem using bus:
passive listeners can register on the bus
active listeners wait for signals actively
multiplexing allows multiple listeners to receive debug signals
a lot more...
Diffstat (limited to 'src/charon/daemon.h')
-rw-r--r-- | src/charon/daemon.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/charon/daemon.h b/src/charon/daemon.h index c54837273..295f21061 100644 --- a/src/charon/daemon.h +++ b/src/charon/daemon.h @@ -1,8 +1,8 @@ /** * @file daemon.h - * + * * @brief Interface of daemon_t. - * + * */ /* @@ -39,7 +39,6 @@ #include <queues/send_queue.h> #include <queues/job_queue.h> #include <queues/event_queue.h> -#include <utils/logger_manager.h> #include <config/configuration.h> #include <config/connections/connection_store.h> #include <config/policies/policy_store.h> @@ -363,6 +362,11 @@ struct daemon_t { sys_logger_t *syslog; /** + * A bus listener logging most important events + */ + sys_logger_t *authlog; + + /** * Kernel Interface to communicate with kernel */ kernel_interface_t *kernel_interface; |