]> git.proxmox.com Git - mirror_frr.git/blame - lib/filter.h
Merge pull request #5785 from ton31337/fix/replace_gtsm_hops_to_readable_macros
[mirror_frr.git] / lib / filter.h
CommitLineData
718e3744 1/*
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 *
896014f4
DL
17 * You should have received a copy of the GNU General Public License along
18 * with this program; see the file COPYING; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
718e3744 20 */
21
22#ifndef _ZEBRA_FILTER_H
23#define _ZEBRA_FILTER_H
24
25#include "if.h"
26
5e244469
RW
27#ifdef __cplusplus
28extern "C" {
29#endif
30
45a8eba9
RW
31/* Maximum ACL name length */
32#define ACL_NAMSIZ 128
33
039f3a34
DS
34/* Filter direction. */
35#define FILTER_IN 0
36#define FILTER_OUT 1
37#define FILTER_MAX 2
38
718e3744 39/* Filter type is made by `permit', `deny' and `dynamic'. */
d62a17ae 40enum filter_type { FILTER_DENY, FILTER_PERMIT, FILTER_DYNAMIC };
718e3744 41
d62a17ae 42enum access_type { ACCESS_TYPE_STRING, ACCESS_TYPE_NUMBER };
718e3744 43
44/* Access list */
d62a17ae 45struct access_list {
46 char *name;
47 char *remark;
718e3744 48
d62a17ae 49 struct access_master *master;
718e3744 50
d62a17ae 51 enum access_type type;
718e3744 52
d62a17ae 53 struct access_list *next;
54 struct access_list *prev;
718e3744 55
d62a17ae 56 struct filter *head;
57 struct filter *tail;
718e3744 58};
59
60/* Prototypes for access-list. */
d62a17ae 61extern void access_list_init(void);
62extern void access_list_reset(void);
63extern void access_list_add_hook(void (*func)(struct access_list *));
64extern void access_list_delete_hook(void (*func)(struct access_list *));
65extern struct access_list *access_list_lookup(afi_t, const char *);
123214ef
MS
66extern enum filter_type access_list_apply(struct access_list *access,
67 const void *object);
718e3744 68
5e244469
RW
69#ifdef __cplusplus
70}
71#endif
72
718e3744 73#endif /* _ZEBRA_FILTER_H */