blob: e6ccd33b3a33ad0c6251751a8b8a003631e8b685 [file] [log] [blame]
paul718e3742002-12-13 20:15:29 +00001/*
2 * Route filtering function.
3 * Copyright (C) 1998 Kunihiro Ishiguro
4 *
5 * This file is part of GNU Zebra.
6 *
7 * GNU Zebra is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published
9 * by the Free Software Foundation; either version 2, or (at your
10 * option) any later version.
11 *
12 * GNU Zebra is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with GNU Zebra; see the file COPYING. If not, write to the
19 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20 * Boston, MA 02111-1307, USA.
21 */
22
23#ifndef _ZEBRA_FILTER_H
24#define _ZEBRA_FILTER_H
25
26#include "if.h"
27
Donald Sharp04907292016-01-07 10:03:01 -050028/* Filter direction. */
29#define FILTER_IN 0
30#define FILTER_OUT 1
31#define FILTER_MAX 2
32
paul718e3742002-12-13 20:15:29 +000033/* Filter type is made by `permit', `deny' and `dynamic'. */
34enum filter_type
35{
36 FILTER_DENY,
37 FILTER_PERMIT,
38 FILTER_DYNAMIC
39};
40
41enum access_type
42{
43 ACCESS_TYPE_STRING,
44 ACCESS_TYPE_NUMBER
45};
46
47/* Access list */
48struct access_list
49{
50 char *name;
51 char *remark;
52
53 struct access_master *master;
54
55 enum access_type type;
56
57 struct access_list *next;
58 struct access_list *prev;
59
60 struct filter *head;
61 struct filter *tail;
62};
63
64/* Prototypes for access-list. */
paul8cc41982005-05-06 21:25:49 +000065extern void access_list_init (void);
66extern void access_list_reset (void);
67extern void access_list_add_hook (void (*func)(struct access_list *));
68extern void access_list_delete_hook (void (*func)(struct access_list *));
69extern struct access_list *access_list_lookup (afi_t, const char *);
70extern enum filter_type access_list_apply (struct access_list *, void *);
paul718e3742002-12-13 20:15:29 +000071
72#endif /* _ZEBRA_FILTER_H */