summaryrefslogtreecommitdiff
path: root/src/libhydra/hydra.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libhydra/hydra.h')
-rw-r--r--src/libhydra/hydra.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/libhydra/hydra.h b/src/libhydra/hydra.h
index 8670f3969..d7a7d8de4 100644
--- a/src/libhydra/hydra.h
+++ b/src/libhydra/hydra.h
@@ -19,6 +19,9 @@
* @defgroup attributes attributes
* @ingroup libhydra
*
+ * @defgroup hkernel kernel
+ * @ingroup libhydra
+ *
* @defgroup hplugins plugins
* @ingroup libhydra
*
@@ -32,6 +35,7 @@
typedef struct hydra_t hydra_t;
#include <attributes/attribute_manager.h>
+#include <kernel/kernel_interface.h>
#include <library.h>
@@ -46,6 +50,11 @@ struct hydra_t {
attribute_manager_t *attributes;
/**
+ * kernel interface to communicate with kernel
+ */
+ kernel_interface_t *kernel_interface;
+
+ /**
* name of the daemon that initialized the library
*/
const char *daemon;