From e2042e6b7b5f5ecb6ec68e6dac39626e636c51b9 Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Fri, 2 Oct 2020 12:13:08 +0200 Subject: nat: add dummy nat_ha_resync() to avoid missing symbol errors Type: fix Change-Id: I288e93da192cf48b3d774e36584d471d4daa2727 Signed-off-by: Damjan Marion --- src/plugins/nat/nat_ha.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'src/plugins/nat/nat_ha.c') diff --git a/src/plugins/nat/nat_ha.c b/src/plugins/nat/nat_ha.c index 8bf07759f68..11b4ba82a17 100644 --- a/src/plugins/nat/nat_ha.c +++ b/src/plugins/nat/nat_ha.c @@ -1124,6 +1124,13 @@ nat_ha_handoff_node_fn (vlib_main_t * vm, vlib_node_runtime_t * node, return frame->n_vectors; } +int +nat_ha_resync (u32 client_index, u32 pid, + nat_ha_resync_event_cb_t event_callback) +{ + return 0; +} + /* *INDENT-OFF* */ VLIB_REGISTER_NODE (nat_ha_handoff_node) = { .function = nat_ha_handoff_node_fn, -- cgit 1.2.3-korg