diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2016-12-07 18:28:07 +0100 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2016-12-07 18:29:34 +0100 |
commit | ac3ad139f648184d44707ab145fde3a03ef5cb6e (patch) | |
tree | 789f16b88e0be380306f86ed1fdc4cc3cb4ae59c /proto/bgp/bgp.c | |
parent | b7605d5c953902b461e5c9e87aa3dfa60ddce5bc (diff) |
BGP: Add support for flowspec (RFC 5575)
Diffstat (limited to 'proto/bgp/bgp.c')
-rw-r--r-- | proto/bgp/bgp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto/bgp/bgp.c b/proto/bgp/bgp.c index 2ca153ab..b7229429 100644 --- a/proto/bgp/bgp.c +++ b/proto/bgp/bgp.c @@ -1846,7 +1846,7 @@ struct protocol proto_bgp = { .template = "bgp%d", .attr_class = EAP_BGP, .preference = DEF_PREF_BGP, - .channel_mask = NB_IP, + .channel_mask = NB_IP | NB_FLOW4 | NB_FLOW6, .proto_size = sizeof(struct bgp_proto), .config_size = sizeof(struct bgp_config), .postconfig = bgp_postconfig, |