aboutsummaryrefslogtreecommitdiffstats
path: root/router/router/tap_inject_node.c
diff options
context:
space:
mode:
authorMichael Borokhovich <michaelbor@gmail.com>2017-10-18 20:29:30 +0000
committerMichael Borokhovich <michaelbor@gmail.com>2017-10-26 13:31:37 +0000
commit0757a32baaa1eb4b3e763b7e69a4af889815808d (patch)
tree25e37ad392e48e4024ad8d4ffdbb61e9d9e48307 /router/router/tap_inject_node.c
parentf3550c32aa89f68f9535830e77628133301a4f1d (diff)
Fix multicast packet reception.
This commit adds the 224.0.0.0/24 entry to the mfib, making it possible to receive multicast packets. Previously, multicast packets would not be received because the entry was added to the unicast fib and not mfib. Change-Id: Id324805da3f214b3b68e9dba8b3967c615135765 Signed-off-by: Michael Borokhovich <michaelbor@gmail.com>
Diffstat (limited to 'router/router/tap_inject_node.c')
-rw-r--r--router/router/tap_inject_node.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/router/router/tap_inject_node.c b/router/router/tap_inject_node.c
index 32c1ab1..8282c4c 100644
--- a/router/router/tap_inject_node.c
+++ b/router/router/tap_inject_node.c
@@ -348,6 +348,7 @@ const static char *const tap_inject_tx_nodes[] = {
};
const static char *const *const tap_inject_nodes[DPO_PROTO_NUM] = {
+ [DPO_PROTO_IP4] = tap_inject_tx_nodes,
[DPO_PROTO_IP6] = tap_inject_tx_nodes,
};