]> git.proxmox.com Git - mirror_frr.git/blame - lib/plist.h
zebra, lib: fix the ZEBRA_INTERFACE_VRF_UPDATE zapi message
[mirror_frr.git] / lib / plist.h
CommitLineData
718e3744 1/*
2 * Prefix list functions.
3 * Copyright (C) 1999 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
8cc4198f 22#ifndef _QUAGGA_PLIST_H
23#define _QUAGGA_PLIST_H
24
fd995a99
QY
25#include <zebra.h>
26
27#include "stream.h"
28#include "vty.h"
29
d62a17ae 30enum prefix_list_type {
31 PREFIX_DENY,
32 PREFIX_PERMIT,
718e3744 33};
34
a38401b6 35struct prefix_list;
718e3744 36
d62a17ae 37struct orf_prefix {
d7c0a89a
QY
38 uint32_t seq;
39 uint8_t ge;
40 uint8_t le;
d62a17ae 41 struct prefix p;
718e3744 42};
43
44/* Prototypes. */
d62a17ae 45extern void prefix_list_init(void);
46extern void prefix_list_reset(void);
47extern void prefix_list_add_hook(void (*func)(struct prefix_list *));
48extern void prefix_list_delete_hook(void (*func)(struct prefix_list *));
49
50extern const char *prefix_list_name(struct prefix_list *);
427f8e61 51extern afi_t prefix_list_afi(struct prefix_list *);
d62a17ae 52extern struct prefix_list *prefix_list_lookup(afi_t, const char *);
ce94edc7
DS
53
54/*
55 * prefix_list_apply_which_prefix
56 *
57 * Allow calling function to learn which prefix
58 * caused the DENY or PERMIT.
59 *
60 * If no pointer is sent in, do not return anything.
61 * If it is a empty plist return a NULL pointer.
62 */
996c9314 63extern enum prefix_list_type
123214ef
MS
64prefix_list_apply_which_prefix(struct prefix_list *plist,
65 const struct prefix **which,
66 const void *object);
ce94edc7 67#define prefix_list_apply(A, B) prefix_list_apply_which_prefix((A), NULL, (B))
d62a17ae 68
69extern struct prefix_list *prefix_bgp_orf_lookup(afi_t, const char *);
70extern struct stream *prefix_bgp_orf_entry(struct stream *,
d7c0a89a
QY
71 struct prefix_list *, uint8_t,
72 uint8_t, uint8_t);
d62a17ae 73extern int prefix_bgp_orf_set(char *, afi_t, struct orf_prefix *, int, int);
74extern void prefix_bgp_orf_remove_all(afi_t, char *);
94d4c685
DS
75extern int prefix_bgp_show_prefix_list(struct vty *vty, afi_t afi, char *name,
76 bool use_json);
718e3744 77
8cc4198f 78#endif /* _QUAGGA_PLIST_H */