net_conn_mgr.h 458 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Copyright (c) 2018 Intel Corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_NET_CONN_MGR_H_
  7. #define ZEPHYR_INCLUDE_NET_CONN_MGR_H_
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. #if defined(CONFIG_NET_CONNECTION_MANAGER)
  12. void net_conn_mgr_resend_status(void);
  13. #else
  14. #define net_conn_mgr_resend_status(...)
  15. #endif /* CONFIG_NET_CONNECTION_MANAGER */
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19. #endif /* ZEPHYR_INCLUDE_NET_CONN_MGR_H_ */