From e5aeaa1f30a6c42b022f33ad61b29a1357e25a2d Mon Sep 17 00:00:00 2001 From: Razvan Becheriu Date: Wed, 12 Feb 2020 17:47:17 +0200 Subject: [PATCH] [#947] addressed review --- src/hooks/dhcp/bootp/bootp_callouts.cc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/hooks/dhcp/bootp/bootp_callouts.cc b/src/hooks/dhcp/bootp/bootp_callouts.cc index 7a3fda37ec..f505329687 100644 --- a/src/hooks/dhcp/bootp/bootp_callouts.cc +++ b/src/hooks/dhcp/bootp/bootp_callouts.cc @@ -183,4 +183,11 @@ int unload() { return (0); } +/// @brief This function is called to retrieve the multi-threading compatibility. +/// +/// @return 1 which means compatible with multi-threading. +int multi_threading_compatible() { + return (1); +} + } // end extern "C"