diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-03-15 01:34:16 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-03-15 01:34:16 +0000 |
commit | 742bf5602428fe87f82e4be68245f2364878d388 (patch) | |
tree | 4133cf151391adf5c719b3d198156c607a696c0f /package/openwrt/wlc | |
parent | f48bb2f9d83244caebcbcf30373fba077016f053 (diff) |
add passive mode to wlioctl.h and wlc
git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@374 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/openwrt/wlc')
-rw-r--r-- | package/openwrt/wlc/wlc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/openwrt/wlc/wlc.c b/package/openwrt/wlc/wlc.c index 464310c775..651cdfc436 100644 --- a/package/openwrt/wlc/wlc.c +++ b/package/openwrt/wlc/wlc.c @@ -39,7 +39,8 @@ struct wl_config { struct wl_config commands[] = { {"txpwr", "transmit power (in mW)", INT, WLC_GET_TXPWR, WLC_SET_TXPWR, 0, 255, NULL}, {"promisc", "promiscuous mode", BOOL, WLC_GET_PROMISC, WLC_SET_PROMISC, 0, 0, NULL}, - {"monitor", "monitor mode", BOOL, WLC_GET_AP, WLC_SET_AP, 0, 0, NULL}, + {"monitor", "monitor mode", BOOL, WLC_GET_MONITOR, WLC_SET_MONITOR, 0, 0, NULL}, + {"passive", "passive mode", BOOL, WLC_GET_PASSIVE, WLC_SET_PASSIVE, 0, 0, NULL}, {"ap", "access point mode (0 = STA, 1 = AP)", BOOL, WLC_GET_AP, WLC_SET_AP, 0, 0, NULL}, {"infra", "infrastructure mode (0 = IBSS, 1 = Infra BSS)", BOOL, WLC_GET_INFRA, WLC_SET_INFRA, 0, 0, NULL}, {"antdiv", "rx antenna diversity (0 = antenna 0, 1 = antenna 1, 3 = auto select)", INT, WLC_GET_ANTDIV, WLC_SET_ANTDIV, 0, 3, NULL}, |