summaryrefslogtreecommitdiff
path: root/zebra/kernel_netlink.c
diff options
context:
space:
mode:
authorMark Stapp <mjs@voltanet.io>2021-03-10 16:43:15 -0500
committerGitHub <noreply@github.com>2021-03-10 16:43:15 -0500
commit6ff2514b41da646eb47333982d3995f0bb99e728 (patch)
tree91dbd473f817fb6f2c8b18f511ca5f7eb338d97e /zebra/kernel_netlink.c
parent20a92a97c2993d9db9a2037e80becd437f287624 (diff)
parentef524230a6baa5dd5dd337d723d47fe984d3e304 (diff)
Merge pull request #8124 from pguibert6WIND/ipsec_iptable_dplane
zebra: move netfilter contexts to zebra dplane
Diffstat (limited to 'zebra/kernel_netlink.c')
-rw-r--r--zebra/kernel_netlink.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/zebra/kernel_netlink.c b/zebra/kernel_netlink.c
index c77a357e9f..aa19b18089 100644
--- a/zebra/kernel_netlink.c
+++ b/zebra/kernel_netlink.c
@@ -1350,6 +1350,14 @@ static enum netlink_msg_status nl_put_msg(struct nl_batch *bth,
case DPLANE_OP_BR_PORT_UPDATE:
return FRR_NETLINK_SUCCESS;
+ case DPLANE_OP_IPTABLE_ADD:
+ case DPLANE_OP_IPTABLE_DELETE:
+ case DPLANE_OP_IPSET_ADD:
+ case DPLANE_OP_IPSET_DELETE:
+ case DPLANE_OP_IPSET_ENTRY_ADD:
+ case DPLANE_OP_IPSET_ENTRY_DELETE:
+ return FRR_NETLINK_ERROR;
+
case DPLANE_OP_NONE:
return FRR_NETLINK_ERROR;
}