summaryrefslogtreecommitdiffstats
path: root/include/ulogd/ulogd.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ulogd/ulogd.h')
-rw-r--r--include/ulogd/ulogd.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/ulogd/ulogd.h b/include/ulogd/ulogd.h
index ad8f9f3..727d682 100644
--- a/include/ulogd/ulogd.h
+++ b/include/ulogd/ulogd.h
@@ -126,7 +126,7 @@ struct ulogd_pluginstance_stack;
struct ulogd_pluginstance;
struct ulogd_plugin {
/* global list of plugins */
- struct list_head list;
+ struct llist_head list;
/* version */
char *version;
/* name of this plugin (predefined by plugin) */
@@ -165,7 +165,7 @@ struct ulogd_plugin {
/* an instance of a plugin, element in a stack */
struct ulogd_pluginstance {
/* local list of plugins in this stack */
- struct list_head list;
+ struct llist_head list;
/* plugin */
struct ulogd_plugin *plugin;
/* stack that we're part of */
@@ -184,9 +184,9 @@ struct ulogd_pluginstance {
struct ulogd_pluginstance_stack {
/* global list of pluginstance stacks */
- struct list_head stack_list;
+ struct llist_head stack_list;
/* list of plugins in this stack */
- struct list_head list;
+ struct llist_head list;
char *name;
};
@@ -236,7 +236,7 @@ extern struct ulogd_keyh_entry *ulogd_keyh;
#define ULOGD_FD_EXCEPT 0x0004
struct ulogd_fd {
- struct list_head list;
+ struct llist_head list;
int fd; /* file descriptor */
unsigned int when;
int (*cb)(int fd, unsigned int what, void *data);