mirror of
https://github.com/ipxe/ipxe
synced 2025-12-23 05:21:49 +03:00
[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>
This commit is contained in:
committed by
Marty Connor
parent
dd8a3e2e70
commit
1327a787eb
@@ -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 )
|
||||
|
||||
/** @} */
|
||||
|
||||
|
||||
17
src/include/usr/iwmgmt.h
Normal file
17
src/include/usr/iwmgmt.h
Normal file
@@ -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 */
|
||||
Reference in New Issue
Block a user