1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-30 00:39:47 +03:00

[package] broadcom-wl: add "assoclist" command to wlc

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@17144 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
jow 2009-08-06 12:02:50 +00:00
parent 20c131d983
commit b856049515
2 changed files with 9 additions and 2 deletions

View File

@ -10,8 +10,8 @@ include $(INCLUDE_DIR)/kernel.mk
PKG_NAME:=broadcom-wl
PKG_VERSION:=4.150.10.5.3
PKG_RELEASE:=5
WLC_VERSION:=0.1
PKG_RELEASE:=6
WLC_VERSION:=0.2
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
PKG_SOURCE_URL:=http://downloads.openwrt.org/sources

View File

@ -905,6 +905,13 @@ static const struct wlc_call wlc_calls[] = {
.handler = wlc_ioctl,
.desc = "Desired BSSID"
},
{
.name = "assoclist",
.param = STRING,
.data.num = (WLC_GET_ASSOCLIST << 16),
.handler = wlc_maclist,
.desc = "MACs of associated stations"
},
};
#define wlc_calls_size (sizeof(wlc_calls) / sizeof(struct wlc_call))