]> git.ipfire.org Git - thirdparty/bird.git/blame - filter/filter.h
Original `expr' is back, filter expressions renamed to `term'.
[thirdparty/bird.git] / filter / filter.h
CommitLineData
b9d70dc8
PM
1/*
2 * BIRD Internet Routing Daemon -- Configuration File Handling
3 *
4 * (c) 1998 Martin Mares <mj@ucw.cz>
5 *
6 * Can be freely distributed and used under the terms of the GNU GPL.
7 */
8
9#ifndef _BIRD_FILT_H_
10#define _BIRD_FILT_H_
11
12#include "lib/resource.h"
13
14/* Lexer */
15
16struct f_instruction {
17 int code;
18 void *arg1, *arg2;
19};
20
21#endif