summaryrefslogtreecommitdiffstats
path: root/bgpd/bgp_filter.h
diff options
context:
space:
mode:
Diffstat (limited to 'bgpd/bgp_filter.h')
-rw-r--r--bgpd/bgp_filter.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/bgpd/bgp_filter.h b/bgpd/bgp_filter.h
index 1890fd3..2d9f07c 100644
--- a/bgpd/bgp_filter.h
+++ b/bgpd/bgp_filter.h
@@ -25,6 +25,11 @@ struct as_filter {
int64_t seq;
};
+struct aspath_exclude_list {
+ struct aspath_exclude_list *next;
+ struct aspath_exclude *bp_as_excl;
+};
+
/* AS path filter list. */
struct as_list {
char *name;
@@ -34,6 +39,7 @@ struct as_list {
struct as_filter *head;
struct as_filter *tail;
+ struct aspath_exclude_list *exclude_list;
};