summaryrefslogtreecommitdiffstats
path: root/include/ulogd/ulogd.h
diff options
context:
space:
mode:
author/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=laforge/emailAddress=laforge@netfilter.org </C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=laforge/emailAddress=laforge@netfilter.org>2005-12-05 14:55:37 +0000
committer/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=laforge/emailAddress=laforge@netfilter.org </C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=laforge/emailAddress=laforge@netfilter.org>2005-12-05 14:55:37 +0000
commit9e15953f68baa1d7805d3e48adbdf6be99c1cc94 (patch)
tree88b6797ff211929fc984bb79b557819455847b3b /include/ulogd/ulogd.h
parent69e124e90021ada331f0a17afa8b1481ac80a53e (diff)
rename all linux list related structs/functs/macros to 'llist', since mysql is now cluttering the namespace by its 'list_add' function.
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);