diff options
| author | Joshua Oreman | 2009-08-08 05:17:50 +0200 |
|---|---|---|
| committer | Marty Connor | 2010-01-05 15:11:21 +0100 |
| commit | 1327a787eb5c7e3563b23bf689455fa887f3e3ed (patch) | |
| tree | a8539c43281d02302731152d04251e7afd2ca8ee /src/include | |
| parent | [802.11] Add core support for detecting and using encrypted networks (diff) | |
| download | ipxe-1327a787eb5c7e3563b23bf689455fa887f3e3ed.tar.gz ipxe-1327a787eb5c7e3563b23bf689455fa887f3e3ed.tar.xz ipxe-1327a787eb5c7e3563b23bf689455fa887f3e3ed.zip | |
[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>
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/gpxe/errfile.h | 1 | ||||
| -rw-r--r-- | src/include/usr/iwmgmt.h | 17 |
2 files changed, 18 insertions, 0 deletions
diff --git a/src/include/gpxe/errfile.h b/src/include/gpxe/errfile.h index 8d4545eb4..55dbb6f64 100644 --- a/src/include/gpxe/errfile.h +++ b/src/include/gpxe/errfile.h @@ -192,6 +192,7 @@ FILE_LICENCE ( GPL2_OR_LATER ); #define ERRFILE_x509 ( ERRFILE_OTHER | 0x00160000 ) #define ERRFILE_login_ui ( ERRFILE_OTHER | 0x00170000 ) #define ERRFILE_ib_srpboot ( ERRFILE_OTHER | 0x00180000 ) +#define ERRFILE_iwmgmt ( ERRFILE_OTHER | 0x00190000 ) /** @} */ diff --git a/src/include/usr/iwmgmt.h b/src/include/usr/iwmgmt.h new file mode 100644 index 000000000..c1bdc37a8 --- /dev/null +++ b/src/include/usr/iwmgmt.h @@ -0,0 +1,17 @@ +#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 */ |
