diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2009-03-31 12:55:57 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2009-03-31 12:55:57 +0200 |
commit | b1a597e0c3821c791a41278454e74261cf1b95fb (patch) | |
tree | fec1fdf523429e3afdcdaec6b0a96ef297723729 /conf | |
parent | 1733d080c9f60de69e843f22e138f27240a8176c (diff) | |
download | bird-b1a597e0c3821c791a41278454e74261cf1b95fb.tar bird-b1a597e0c3821c791a41278454e74261cf1b95fb.zip |
Reimplementation of prefix sets.
Prefix sets were broken beyond any repair and have to be reimplemented.
They are reimplemented using a trie with bitmasks in nodes.
There is also change in the interpretation of minus prefix pattern,
but the old interpretation was already inconsistent with
the documentation and broken.
There is also some bugfixes in filter code related to set variables.
Diffstat (limited to 'conf')
-rw-r--r-- | conf/confbase.Y | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/conf/confbase.Y b/conf/confbase.Y index e6401f4..4385462 100644 --- a/conf/confbase.Y +++ b/conf/confbase.Y @@ -34,6 +34,7 @@ CF_DECLS struct f_inst *x; struct filter *f; struct f_tree *e; + struct f_trie *trie; struct f_val v; struct f_path_mask *h; struct password_item *p; |