net: Expose a way to know if the network interface is suspended or not

And use it in the shell to display such information then.

Signed-off-by: Tomasz Bursztyka <tomasz.bursztyka@linux.intel.com>
This commit is contained in:
Tomasz Bursztyka 2020-02-28 11:14:46 +01:00 committed by Jukka Rissanen
commit 4322c66e4b
3 changed files with 19 additions and 1 deletions

View file

@ -2133,7 +2133,6 @@ static inline bool net_if_are_pending_tx_packets(struct net_if *iface)
}
#ifdef CONFIG_NET_POWER_MANAGEMENT
/**
* @brief Suspend a network interface from a power management perspective
*
@ -2152,6 +2151,14 @@ int net_if_suspend(struct net_if *iface);
*/
int net_if_resume(struct net_if *iface);
/**
* @brief Check if the network interface is suspended or not.
*
* @param iface Pointer to network interface
*
* @return True if interface is suspended, False otherwise.
*/
bool net_if_is_suspended(struct net_if *iface);
#endif /* CONFIG_NET_POWER_MANAGEMENT */
/** @cond INTERNAL_HIDDEN */