summaryrefslogtreecommitdiff
path: root/src/libcharon/daemon.h
diff options
context:
space:
mode:
authorYves-Alexis Perez <corsac@debian.org>2013-02-07 13:27:27 +0100
committerYves-Alexis Perez <corsac@debian.org>2013-02-07 13:27:27 +0100
commit7585facf05d927eb6df3929ce09ed5e60d905437 (patch)
treee4d14b4dc180db20356b6b01ce0112f3a2d7897e /src/libcharon/daemon.h
parentc1343b3278cdf99533b7902744d15969f9d6fdc1 (diff)
downloadvyos-strongswan-7585facf05d927eb6df3929ce09ed5e60d905437.tar.gz
vyos-strongswan-7585facf05d927eb6df3929ce09ed5e60d905437.zip
Imported Upstream version 5.0.2
Diffstat (limited to 'src/libcharon/daemon.h')
-rw-r--r--src/libcharon/daemon.h34
1 files changed, 22 insertions, 12 deletions
diff --git a/src/libcharon/daemon.h b/src/libcharon/daemon.h
index b67de77b8..2926d945b 100644
--- a/src/libcharon/daemon.h
+++ b/src/libcharon/daemon.h
@@ -157,8 +157,6 @@ typedef struct daemon_t daemon_t;
#include <network/socket_manager.h>
#include <control/controller.h>
#include <bus/bus.h>
-#include <bus/listeners/file_logger.h>
-#include <bus/listeners/sys_logger.h>
#include <sa/ike_sa_manager.h>
#include <sa/trap_manager.h>
#include <sa/shunt_manager.h>
@@ -248,16 +246,6 @@ struct daemon_t {
bus_t *bus;
/**
- * A list of installed file_logger_t's
- */
- linked_list_t *file_loggers;
-
- /**
- * A list of installed sys_logger_t's
- */
- linked_list_t *sys_loggers;
-
- /**
* Controller to control the daemon
*/
controller_t *controller;
@@ -307,6 +295,25 @@ struct daemon_t {
*/
void (*start)(daemon_t *this);
+ /**
+ * Load/Reload loggers defined in strongswan.conf
+ *
+ * @param levels optional debug levels used to create default loggers
+ * if none are defined in strongswan.conf
+ * @param to_stderr TRUE to log to stderr/stdout if no loggers are defined
+ * in strongswan.conf
+ */
+ void (*load_loggers)(daemon_t *this, level_t levels[DBG_MAX],
+ bool to_stderr);
+
+ /**
+ * Set the log level for the given log group for all configured file- and
+ * syslog-loggers.
+ *
+ * @param group log group
+ * @param level log level
+ */
+ void (*set_level)(daemon_t *this, debug_t group, level_t level);
};
/**
@@ -322,6 +329,9 @@ extern daemon_t *charon;
* This function initializes the bus, listeners can be registered before
* calling initialize().
*
+ * libcharon_init() may be called multiple times in a single process, but each
+ * caller should call libcharon_deinit() for each call to libcharon_init().
+ *
* @param name name of the binary that uses the library
* @return FALSE if integrity check failed
*/