From: Damjan Marion Date: Fri, 2 Oct 2020 10:13:08 +0000 (+0200) Subject: nat: add dummy nat_ha_resync() to avoid missing symbol errors X-Git-Tag: v21.06-rc0~417 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=e2042e6b7b5f5ecb6ec68e6dac39626e636c51b9;p=vpp.git nat: add dummy nat_ha_resync() to avoid missing symbol errors Type: fix Change-Id: I288e93da192cf48b3d774e36584d471d4daa2727 Signed-off-by: Damjan Marion --- 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,