samples: net: socket: echo_server: conn mgmt header file missing

The conn_mgr_monitor.h was not included so the compilation
gave warning for missing conn_mgr_ignore_iface() function.

Signed-off-by: Jukka Rissanen <jukka.rissanen@nordicsemi.no>
This commit is contained in:
Jukka Rissanen 2023-09-29 16:50:04 +03:00 committed by Johan Hedberg
commit a59b67c521

View file

@ -11,6 +11,7 @@ LOG_MODULE_DECLARE(net_echo_server_sample, LOG_LEVEL_DBG);
#include <zephyr/net/ethernet.h> #include <zephyr/net/ethernet.h>
#include <zephyr/net/virtual_mgmt.h> #include <zephyr/net/virtual_mgmt.h>
#include <zephyr/net/conn_mgr_monitor.h>
/* User data for the interface callback */ /* User data for the interface callback */
struct ud { struct ud {