iPXE
iwmgmt.h
Go to the documentation of this file.
1#ifndef _USR_IWMGMT_H
2#define _USR_IWMGMT_H
3
4/** @file
5 *
6 * Wireless network interface management
7 *
8 */
9
10FILE_LICENCE ( GPL2_OR_LATER );
11
12struct net80211_device;
13
14extern void iwstat ( struct net80211_device *dev );
15extern int iwlist ( struct net80211_device *dev );
16
17#endif /* _USR_IWMGMT_H */
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:896
int iwlist(struct net80211_device *dev)
Scan for wireless networks using 802.11 device.
Definition iwmgmt.c:120
void iwstat(struct net80211_device *dev)
Print status of 802.11 device.
Definition iwmgmt.c:41
Structure encapsulating the complete state of an 802.11 device.
Definition net80211.h:787