[build] cleanup low-hanging autoreconf warnings
[jleu-quagga.git] / bgpd / bgp_clist.h
blob6d7e363e972a8c22accb48ffb270f533f0a845cf
1 /* BGP Community list.
2 Copyright (C) 1999 Kunihiro Ishiguro
4 This file is part of GNU Zebra.
6 GNU Zebra is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 2, or (at your option) any
9 later version.
11 GNU Zebra is distributed in the hope that it will be useful, but
12 WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU Zebra; see the file COPYING. If not, write to the Free
18 Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 02111-1307, USA. */
21 #ifndef _QUAGGA_BGP_CLIST_H
22 #define _QUAGGA_BGP_CLIST_H
24 /* Master Community-list. */
25 #define COMMUNITY_LIST_MASTER 0
26 #define EXTCOMMUNITY_LIST_MASTER 1
28 /* Community-list deny and permit. */
29 #define COMMUNITY_DENY 0
30 #define COMMUNITY_PERMIT 1
32 /* Number and string based community-list name. */
33 #define COMMUNITY_LIST_STRING 0
34 #define COMMUNITY_LIST_NUMBER 1
36 /* Community-list entry types. */
37 #define COMMUNITY_LIST_STANDARD 0 /* Standard community-list. */
38 #define COMMUNITY_LIST_EXPANDED 1 /* Expanded community-list. */
39 #define EXTCOMMUNITY_LIST_STANDARD 2 /* Standard extcommunity-list. */
40 #define EXTCOMMUNITY_LIST_EXPANDED 3 /* Expanded extcommunity-list. */
42 /* Community-list. */
43 struct community_list
45 /* Name of the community-list. */
46 char *name;
48 /* String or number. */
49 int sort;
51 /* Link to upper list. */
52 struct community_list_list *parent;
54 /* Linked list for other community-list. */
55 struct community_list *next;
56 struct community_list *prev;
58 /* Community-list entry in this community-list. */
59 struct community_entry *head;
60 struct community_entry *tail;
63 /* Each entry in community-list. */
64 struct community_entry
66 struct community_entry *next;
67 struct community_entry *prev;
69 /* Permit or deny. */
70 u_char direct;
72 /* Standard or expanded. */
73 u_char style;
75 /* Any match. */
76 u_char any;
78 /* Community structure. */
79 union
81 struct community *com;
82 struct ecommunity *ecom;
83 } u;
85 /* Configuration string. */
86 char *config;
88 /* Expanded community-list regular expression. */
89 regex_t *reg;
92 /* Linked list of community-list. */
93 struct community_list_list
95 struct community_list *head;
96 struct community_list *tail;
99 /* Master structure of community-list and extcommunity-list. */
100 struct community_list_master
102 struct community_list_list num;
103 struct community_list_list str;
106 /* Community-list handler. community_list_init() returns this
107 structure as handler. */
108 struct community_list_handler
110 /* Community-list. */
111 struct community_list_master community_list;
113 /* Exteded community-list. */
114 struct community_list_master extcommunity_list;
117 /* Error code of community-list. */
118 #define COMMUNITY_LIST_ERR_CANT_FIND_LIST -1
119 #define COMMUNITY_LIST_ERR_MALFORMED_VAL -2
120 #define COMMUNITY_LIST_ERR_STANDARD_CONFLICT -3
121 #define COMMUNITY_LIST_ERR_EXPANDED_CONFLICT -4
123 /* Handler. */
124 extern struct community_list_handler *bgp_clist;
126 /* Prototypes. */
127 extern struct community_list_handler *community_list_init (void);
129 extern int community_list_set (struct community_list_handler *ch,
130 const char *name, const char *str, int direct,
131 int style);
132 extern int community_list_unset (struct community_list_handler *ch,
133 const char *name, const char *str,
134 int direct, int style);
135 extern int extcommunity_list_set (struct community_list_handler *ch,
136 const char *name, const char *str,
137 int direct, int style);
138 extern int extcommunity_list_unset (struct community_list_handler *ch,
139 const char *name, const char *str,
140 int direct, int style);
142 extern struct community_list_master *
143 community_list_master_lookup (struct community_list_handler *, int);
145 extern struct community_list *
146 community_list_lookup (struct community_list_handler *, const char *, int);
148 extern int community_list_match (struct community *, struct community_list *);
149 extern int ecommunity_list_match (struct ecommunity *, struct community_list *);
150 extern int community_list_exact_match (struct community *,
151 struct community_list *);
152 extern struct community *
153 community_list_match_delete (struct community *, struct community_list *);
155 #endif /* _QUAGGA_BGP_CLIST_H */