summaryrefslogtreecommitdiffstats
path: root/filter/filter.h
diff options
context:
space:
mode:
authorPavel Machek <pavel@ucw.cz>1999-01-15 17:49:17 +0100
committerPavel Machek <pavel@ucw.cz>1999-01-15 17:49:17 +0100
commitb9d70dc84e488212328103438bdf4e369c7d27a1 (patch)
tree96afe1e6d460c3ba55b27a92c052800d9616df25 /filter/filter.h
parentb79f9215b99c7a54dbb2639c972dda497d141133 (diff)
downloadbird-b9d70dc84e488212328103438bdf4e369c7d27a1.tar
bird-b9d70dc84e488212328103438bdf4e369c7d27a1.zip
Filters, second try. This time they have their own directory.
Diffstat (limited to 'filter/filter.h')
-rw-r--r--filter/filter.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/filter/filter.h b/filter/filter.h
new file mode 100644
index 0000000..499be0a
--- /dev/null
+++ b/filter/filter.h
@@ -0,0 +1,21 @@
+/*
+ * BIRD Internet Routing Daemon -- Configuration File Handling
+ *
+ * (c) 1998 Martin Mares <mj@ucw.cz>
+ *
+ * Can be freely distributed and used under the terms of the GNU GPL.
+ */
+
+#ifndef _BIRD_FILT_H_
+#define _BIRD_FILT_H_
+
+#include "lib/resource.h"
+
+/* Lexer */
+
+struct f_instruction {
+ int code;
+ void *arg1, *arg2;
+};
+
+#endif