Zephyr API Documentation  3.5.0
A Scalable Open Source RTOS
3.5.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
conn_mgr_monitor.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2018 Intel Corporation
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7#ifndef ZEPHYR_INCLUDE_CONN_MGR_H_
8#define ZEPHYR_INCLUDE_CONN_MGR_H_
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
14#if defined(CONFIG_NET_CONNECTION_MANAGER) || defined(__DOXYGEN__)
15
23struct net_if;
24struct net_l2;
25
31
43void conn_mgr_ignore_iface(struct net_if *iface);
44
58void conn_mgr_watch_iface(struct net_if *iface);
59
68
76void conn_mgr_ignore_l2(const struct net_l2 *l2);
77
85void conn_mgr_watch_l2(const struct net_l2 *l2);
86
91#else
92
93#define conn_mgr_mon_resend_status(...)
94#define conn_mgr_ignore_iface(...)
95#define conn_mgr_watch_iface(...)
96#define conn_mgr_ignore_l2(...)
97#define conn_mgr_watch_l2(...)
98
99#endif /* CONFIG_NET_CONNECTION_MANAGER */
100
101#ifdef __cplusplus
102}
103#endif
104
105#endif /* ZEPHYR_INCLUDE_CONN_MGR_H_ */
void conn_mgr_ignore_l2(const struct net_l2 *l2)
Mark an L2 to be ignored by conn_mgr.
void conn_mgr_ignore_iface(struct net_if *iface)
Mark an iface to be ignored by conn_mgr.
void conn_mgr_watch_iface(struct net_if *iface)
Watch (stop ignoring) an iface.
void conn_mgr_mon_resend_status(void)
Resend either NET_L4_CONNECTED or NET_L4_DISCONNECTED depending on whether connectivity is currently ...
void conn_mgr_watch_l2(const struct net_l2 *l2)
Watch (stop ignoring) an L2.
bool conn_mgr_is_iface_ignored(struct net_if *iface)
Check whether the provided iface is currently ignored.
Network Interface structure.
Definition: net_if.h:595
Network L2 structure.
Definition: net_l2.h:55