diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2020-04-21 13:49:29 +0200 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2021-09-25 16:06:43 +0200 |
commit | e709dc09e61c4604821d10b81604d38616b81a0b (patch) | |
tree | bcbaa8cb114fa4dedfe68b866abf7e364bc87273 /test/birdtest.c | |
parent | dd61278c9db1d4bea29f0a21aa460c7fe931eb32 (diff) |
Filter: Improve prefix trie tests
Add tests explicitly matching insides and outsides of trie and update
tests to do testing of both IPv4 and IPv6 tries.
Diffstat (limited to 'test/birdtest.c')
-rw-r--r-- | test/birdtest.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/birdtest.c b/test/birdtest.c index a1da078f..d739e78b 100644 --- a/test/birdtest.c +++ b/test/birdtest.c @@ -501,6 +501,12 @@ bt_fmt_ipa(char *buf, size_t size, const void *data) bsnprintf(buf, size, "(null)"); } +void +bt_format_net(char *buf, size_t size, const void *data) +{ + bsnprintf(buf, size, "%N", (const net_addr *) data); +} + int bt_is_char(byte c) { |