diff options
| author | Mark Stapp <mjs@voltanet.io> | 2021-03-10 16:43:15 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-10 16:43:15 -0500 |
| commit | 6ff2514b41da646eb47333982d3995f0bb99e728 (patch) | |
| tree | 91dbd473f817fb6f2c8b18f511ca5f7eb338d97e /zebra/kernel_netlink.c | |
| parent | 20a92a97c2993d9db9a2037e80becd437f287624 (diff) | |
| parent | ef524230a6baa5dd5dd337d723d47fe984d3e304 (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.c | 8 |
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; } |
