diff options
author | Ondrej Zajicek <santiago@crfreenet.org> | 2010-07-27 18:20:12 +0200 |
---|---|---|
committer | Ondrej Zajicek <santiago@crfreenet.org> | 2010-07-27 18:20:12 +0200 |
commit | c477f48916d74c2db6156145851f9536ae0a0a6c (patch) | |
tree | aac42a01e92dadaa97ee59f1236a6d71567fbe18 /filter | |
parent | 7f0d245a5e6d2d789e1fce4b5388ea69aba3b428 (diff) | |
download | bird-c477f48916d74c2db6156145851f9536ae0a0a6c.tar bird-c477f48916d74c2db6156145851f9536ae0a0a6c.zip |
Hostcache should use trie to filter relevant route changes.
Diffstat (limited to 'filter')
-rw-r--r-- | filter/trie.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/filter/trie.c b/filter/trie.c index 522eb99..2f0edfa 100644 --- a/filter/trie.c +++ b/filter/trie.c @@ -114,8 +114,8 @@ attach_node(struct f_trie_node *parent, struct f_trie_node *child) * @h: prefix upper bound * * Adds prefix (prefix pattern) @px/@plen to trie @t. @l and @h are lower - * and upper bounds on accepted prefix lengths, both inclusive. 0 <= - * l, h <= 32 (128 for IPv6). + * and upper bounds on accepted prefix lengths, both inclusive. + * 0 <= l, h <= 32 (128 for IPv6). */ void |