1
0
mirror of https://github.com/bgp/bgpq4.git synced 2024-05-11 05:55:05 +00:00

'-T route6' filter added to ripe-style requests..

This commit is contained in:
snar
2008-05-19 14:13:17 +00:00
parent c2e6f85db9
commit 6ae91f41f2
2 changed files with 3 additions and 2 deletions

View File

@@ -3,6 +3,7 @@
- final support for asn32, now with correct syntax for Juniper.
- experimental 'pipelining' mode (flag -T), much faster when
working with big as-set's.
- RIPE-style query (-i origin) now requests only route6 objects.
0.1.1 (2008-05-16):
- initial support for asn32 added (flag -3). By default it's off,

View File

@@ -528,10 +528,10 @@ bgpq_expand(struct bgpq_expander* b)
if(b->family==AF_INET6) {
if(k>0)
bgpq_expand_ripe(f,bgpq_expanded_v6prefix,b,
"-i origin as%u.%u\r\n", k, i*8+j);
"-T route6 -i origin as%u.%u\r\n", k,i*8+j);
else
bgpq_expand_ripe(f,bgpq_expanded_v6prefix,b,
"-i origin as%u\r\n", i*8+j);
"-T route6 -i origin as%u\r\n", i*8+j);
} else {
if(!pipelining) {