]> git.proxmox.com Git - mirror_frr.git/blame - lib/plist.h
Merge pull request #753 from dslicenc/cm16876-ospfv6-mtu
[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
718e3744 30enum prefix_list_type
31{
32 PREFIX_DENY,
33 PREFIX_PERMIT,
34};
35
a38401b6 36struct prefix_list;
718e3744 37
38struct orf_prefix
39{
40 u_int32_t seq;
41 u_char ge;
42 u_char le;
43 struct prefix p;
44};
45
46/* Prototypes. */
8cc4198f 47extern void prefix_list_init (void);
48extern void prefix_list_reset (void);
49extern void prefix_list_add_hook (void (*func) (struct prefix_list *));
50extern void prefix_list_delete_hook (void (*func) (struct prefix_list *));
51
a38401b6 52extern const char *prefix_list_name (struct prefix_list *);
8cc4198f 53extern struct prefix_list *prefix_list_lookup (afi_t, const char *);
54extern enum prefix_list_type prefix_list_apply (struct prefix_list *, void *);
718e3744 55
c7da3d50 56extern struct prefix_list *prefix_bgp_orf_lookup (afi_t, const char *);
8cc4198f 57extern struct stream * prefix_bgp_orf_entry (struct stream *,
58 struct prefix_list *,
59 u_char, u_char, u_char);
60extern int prefix_bgp_orf_set (char *, afi_t, struct orf_prefix *, int, int);
c7da3d50 61extern void prefix_bgp_orf_remove_all (afi_t, char *);
856ca177 62extern int prefix_bgp_show_prefix_list (struct vty *, afi_t, char *, u_char);
718e3744 63
8cc4198f 64#endif /* _QUAGGA_PLIST_H */