]> git.proxmox.com Git - mirror_frr.git/blame - lib/plist_int.h
zebra, lib: fix the ZEBRA_INTERFACE_VRF_UPDATE zapi message
[mirror_frr.git] / lib / plist_int.h
CommitLineData
814e24c4
DS
1/*
2 * Prefix list internal definitions.
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
814e24c4
DS
20 */
21
22#ifndef _QUAGGA_PLIST_INT_H
23#define _QUAGGA_PLIST_INT_H
24
d62a17ae 25enum prefix_name_type { PREFIX_TYPE_STRING, PREFIX_TYPE_NUMBER };
814e24c4
DS
26
27struct pltrie_table;
28
d62a17ae 29struct prefix_list {
30 char *name;
31 char *desc;
814e24c4 32
d62a17ae 33 struct prefix_master *master;
814e24c4 34
d62a17ae 35 enum prefix_name_type type;
814e24c4 36
d62a17ae 37 int count;
38 int rangecount;
814e24c4 39
d62a17ae 40 struct prefix_list_entry *head;
41 struct prefix_list_entry *tail;
814e24c4 42
d62a17ae 43 struct pltrie_table *trie;
814e24c4 44
d62a17ae 45 struct prefix_list *next;
46 struct prefix_list *prev;
814e24c4
DS
47};
48
49/* Each prefix-list's entry. */
d62a17ae 50struct prefix_list_entry {
24512fbd 51 int64_t seq;
814e24c4 52
d62a17ae 53 int le;
54 int ge;
814e24c4 55
d62a17ae 56 enum prefix_list_type type;
814e24c4 57
d62a17ae 58 int any;
59 struct prefix prefix;
814e24c4 60
d62a17ae 61 unsigned long refcnt;
62 unsigned long hitcnt;
814e24c4 63
d62a17ae 64 struct prefix_list_entry *next;
65 struct prefix_list_entry *prev;
814e24c4 66
d62a17ae 67 /* up the chain for best match search */
68 struct prefix_list_entry *next_best;
814e24c4
DS
69};
70
71#endif /* _QUAGGA_PLIST_INT_H */