Lines Matching full:iface
40 * @brief Mark an iface to be ignored by conn_mgr.
42 * Ignoring an iface forces conn_mgr to consider it unready/disconnected.
44 * This means that events related to the iface connecting/disconnecting will not be fired,
45 * and if the iface was connected before being ignored, events will be fired as though it
48 * @param iface iface to be ignored.
50 void conn_mgr_ignore_iface(struct net_if *iface);
53 * @brief Watch (stop ignoring) an iface.
55 * conn_mgr will no longer be forced to consider the iface unreadly/disconnected.
57 * Events related to the iface connecting/disconnecting will no longer be blocked,
58 * and if the iface was connected before being watched, events will be fired as though
63 * @param iface iface to no longer ignore.
65 void conn_mgr_watch_iface(struct net_if *iface);
68 * @brief Check whether the provided iface is currently ignored.
70 * @param iface The iface to check.
71 * @retval true if the iface is being ignored by conn_mgr.
72 * @retval false if the iface is being watched by conn_mgr.
74 bool conn_mgr_is_iface_ignored(struct net_if *iface);