Zephyr API 3.6.99
|
Connection Manager Bulk API . More...
Functions | |
int | conn_mgr_all_if_up (bool skip_ignored) |
Convenience function that takes all available ifaces into the admin-up state. | |
int | conn_mgr_all_if_down (bool skip_ignored) |
Convenience function that takes all available ifaces into the admin-down state. | |
int | conn_mgr_all_if_connect (bool skip_ignored) |
Convenience function that takes all available ifaces into the admin-up state, and connects those that support connectivity. | |
int | conn_mgr_all_if_disconnect (bool skip_ignored) |
Convenience function that disconnects all available ifaces that support connectivity without putting them into admin-down state (unless auto-down is enabled for the iface). | |
Connection Manager Bulk API .
int conn_mgr_all_if_connect | ( | bool | skip_ignored | ) |
#include <zephyr/net/conn_mgr_connectivity.h>
Convenience function that takes all available ifaces into the admin-up state, and connects those that support connectivity.
Essentially a wrapper for net_if_up and conn_mgr_if_connect.
skip_ignored | - If true, only affect ifaces that aren't ignored by conn_mgr. Otherwise, affect all ifaces. |
int conn_mgr_all_if_disconnect | ( | bool | skip_ignored | ) |
#include <zephyr/net/conn_mgr_connectivity.h>
Convenience function that disconnects all available ifaces that support connectivity without putting them into admin-down state (unless auto-down is enabled for the iface).
Essentially a wrapper for net_if_down.
skip_ignored | - If true, only affect ifaces that aren't ignored by conn_mgr. Otherwise, affect all ifaces. |
int conn_mgr_all_if_down | ( | bool | skip_ignored | ) |
#include <zephyr/net/conn_mgr_connectivity.h>
Convenience function that takes all available ifaces into the admin-down state.
Essentially a wrapper for net_if_down.
skip_ignored | - If true, only affect ifaces that aren't ignored by conn_mgr. Otherwise, affect all ifaces. |
int conn_mgr_all_if_up | ( | bool | skip_ignored | ) |
#include <zephyr/net/conn_mgr_connectivity.h>
Convenience function that takes all available ifaces into the admin-up state.
Essentially a wrapper for net_if_up.
skip_ignored | - If true, only affect ifaces that aren't ignored by conn_mgr. Otherwise, affect all ifaces. |