david/ipxe
Archived
1
0
This repository has been archived on 2020-12-06. You can view files and clone it, but cannot push or open issues or pull requests.
ipxe/src/include/usr/iwmgmt.h
Joshua Oreman 1327a787eb [iwmgmt] Add wireless management commands and text for common errors
Add commands `iwstat' (to list 802.11-specific status information for
802.11 devices) and `iwlist' (to scan for available networks and print
a list along with security information).

Signed-off-by: Marty Connor <mdc@etherboot.org>
2010-01-05 09:11:21 -05:00

18 lines
296 B
C

#ifndef _USR_IWMGMT_H
#define _USR_IWMGMT_H
/** @file
*
* Wireless network interface management
*
*/
FILE_LICENCE ( GPL2_OR_LATER );
struct net80211_device;
extern void iwstat ( struct net80211_device *dev );
extern int iwlist ( struct net80211_device *dev );
#endif /* _USR_IWMGMT_H */