From 9e15953f68baa1d7805d3e48adbdf6be99c1cc94 Mon Sep 17 00:00:00 2001 From: "/C=DE/ST=Berlin/L=Berlin/O=Netfilter Project/OU=Development/CN=laforge/emailAddress=laforge@netfilter.org" Date: Mon, 5 Dec 2005 14:55:37 +0000 Subject: rename all linux list related structs/functs/macros to 'llist', since mysql is now cluttering the namespace by its 'list_add' function. --- include/ulogd/ulogd.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'include/ulogd/ulogd.h') 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); -- cgit v1.2.3