1999-01-16 00:49:17 +08:00
|
|
|
/*
|
1999-03-17 22:29:39 +08:00
|
|
|
* BIRD Internet Routing Daemon -- Filters
|
1999-01-16 00:49:17 +08:00
|
|
|
*
|
1999-03-17 22:29:39 +08:00
|
|
|
* (c) 1999 Pavel Machek <pavel@ucw.cz>
|
1999-01-16 00:49:17 +08:00
|
|
|
*
|
|
|
|
* 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"
|
|
|
|
|
1999-03-09 04:30:06 +08:00
|
|
|
struct f_inst { /* Instruction */
|
|
|
|
struct f_inst *next; /* Structure is 16 bytes, anyway */
|
1999-01-16 00:49:17 +08:00
|
|
|
int code;
|
|
|
|
void *arg1, *arg2;
|
|
|
|
};
|
|
|
|
|
1999-03-09 04:30:06 +08:00
|
|
|
struct f_val {
|
|
|
|
int type;
|
|
|
|
union {
|
|
|
|
int i;
|
|
|
|
} val;
|
|
|
|
};
|
|
|
|
|
1999-03-17 22:29:39 +08:00
|
|
|
struct filter {
|
|
|
|
char *name;
|
|
|
|
struct f_inst *root;
|
|
|
|
};
|
|
|
|
|
1999-01-16 02:13:55 +08:00
|
|
|
void filters_postconfig(void);
|
1999-03-09 04:30:06 +08:00
|
|
|
struct f_inst *f_new_inst(void);
|
1999-03-03 03:49:28 +08:00
|
|
|
|
1999-03-17 22:29:39 +08:00
|
|
|
int f_run(struct filter *filter, struct rte *rtein, struct rte **rteout);
|
|
|
|
|
1999-03-03 03:49:28 +08:00
|
|
|
#define F_ACCEPT 1
|
|
|
|
#define F_REJECT 2
|
|
|
|
#define F_MODIFY 3
|
1999-03-17 18:19:07 +08:00
|
|
|
#define F_ERROR 4
|
|
|
|
#define F_QUITBIRD 5
|
1999-01-16 02:13:55 +08:00
|
|
|
|
1999-03-09 04:30:06 +08:00
|
|
|
#define T_VOID 0
|
1999-03-17 18:19:07 +08:00
|
|
|
#define T_RETURN 1
|
|
|
|
#define T_INT 10
|
|
|
|
#define T_PX 11 /* prefix */
|
|
|
|
#define T_INTLIST 12
|
|
|
|
|
1999-01-16 00:49:17 +08:00
|
|
|
#endif
|