summaryrefslogtreecommitdiff
path: root/usr.sbin/bgpd/rde.h
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2018-09-07 05:43:34 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2018-09-07 05:43:34 +0000
commitae9a4d385acb942df3b17ec97f7295d2e6106b3f (patch)
treef1d04553a554f01060644a41855abaa31750bf79 /usr.sbin/bgpd/rde.h
parent7f2f3f8766805f6ee2291486a2fc78de71fb68ed (diff)
Implement as-set a fast lookup table to be used instead of long list of
AS numbers in source-as, AS and transit-as filterstatements. These table use bsearch to quickly verify if an AS is in the set or not. The filter syntax is not fully set in stone yet. OK denis@ benno@ and previously OK deraadt@
Diffstat (limited to 'usr.sbin/bgpd/rde.h')
-rw-r--r--usr.sbin/bgpd/rde.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/bgpd/rde.h b/usr.sbin/bgpd/rde.h
index 6049bdaa60f..f32c8b034ed 100644
--- a/usr.sbin/bgpd/rde.h
+++ b/usr.sbin/bgpd/rde.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: rde.h,v 1.186 2018/08/08 13:08:54 claudio Exp $ */
+/* $OpenBSD: rde.h,v 1.187 2018/09/07 05:43:33 claudio Exp $ */
/*
* Copyright (c) 2003, 2004 Claudio Jeker <claudio@openbsd.org> and
@@ -412,7 +412,7 @@ enum filter_actions rde_filter(struct filter_head *, struct rde_peer *,
void rde_apply_set(struct filter_set_head *, struct filterstate *,
u_int8_t, struct rde_peer *, struct rde_peer *);
int rde_filter_equal(struct filter_head *, struct filter_head *,
- struct rde_peer *, struct prefixset_head *);
+ struct rde_peer *);
void rde_filter_calc_skip_steps(struct filter_head *);
/* rde_prefix.c */