zephyr/include/zephyr/net/net_conn_mgr.h
Yuval Peress 53ef68d459 include: Prefix includes to use a scope
Move include paths and add new target_include_directories to support
backwards compatibility:
* /include -> /include/zephyr
  example: <irq.h> -> <zephyr/irq.h>

Issue #41543

Signed-off-by: Yuval Peress <peress@google.com>
2022-04-08 19:03:32 +02:00

29 lines
458 B
C

/*
* Copyright (c) 2018 Intel Corporation
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef ZEPHYR_INCLUDE_NET_CONN_MGR_H_
#define ZEPHYR_INCLUDE_NET_CONN_MGR_H_
#ifdef __cplusplus
extern "C" {
#endif
#if defined(CONFIG_NET_CONNECTION_MANAGER)
void net_conn_mgr_resend_status(void);
#else
#define net_conn_mgr_resend_status(...)
#endif /* CONFIG_NET_CONNECTION_MANAGER */
#ifdef __cplusplus
}
#endif
#endif /* ZEPHYR_INCLUDE_NET_CONN_MGR_H_ */