summaryrefslogtreecommitdiffstats
path: root/include/ulogd/select.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>2006-01-08 23:06:26 +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>2006-01-08 23:06:26 +0000
commitfa7e5de1a3eba2305991b0fce1947afa2cac2153 (patch)
tree3b37ee5cd65f7abe1ca14ea7463b09abf9b0aa39 /include/ulogd/select.h
parentea4c61fd022d4f0b46b556948e757102e28f2566 (diff)
now 'make dist-bzip2' finally works
Diffstat (limited to 'include/ulogd/select.h')
-rw-r--r--include/ulogd/select.h22
1 files changed, 0 insertions, 22 deletions
diff --git a/include/ulogd/select.h b/include/ulogd/select.h
deleted file mode 100644
index 4558555..0000000
--- a/include/ulogd/select.h
+++ /dev/null
@@ -1,22 +0,0 @@
-#ifndef ULOGD_SELECT_H
-#define ULOGD_SELECT_H
-
-#include <ulogd/linuxlist.h>
-
-#define ULOGD_FD_F_READ 0x0001
-#define ULOGD_FD_F_WRITE 0x0002
-
-struct ulogd_fd {
- struct list_head list;
- int fd;
- unsigned int flags;
- void *data;
- int (*cb)(int fd, int flags, void *data);
-};
-
-
-int ulogd_register_fd(struct ulogd_fd *fd);
-int ulogd_unregister_fd(struct ulogd_fd *fd);
-int ulogd_select_main();
-
-#endif