X-Git-Url: https://git.rohieb.name/openwrt.git/blobdiff_plain/20c6b42bcf958aadd363950c27f76e64700d52e3..2d17b93d5618cc37b3e1a4eafbb62a95a17c339f:/package/broadcom-wl/src/wlc/wlc.c diff --git a/package/broadcom-wl/src/wlc/wlc.c b/package/broadcom-wl/src/wlc/wlc.c index 790bdfff5..747b3d5bb 100644 --- a/package/broadcom-wl/src/wlc/wlc.c +++ b/package/broadcom-wl/src/wlc/wlc.c @@ -663,6 +663,13 @@ static const struct wlc_call wlc_calls[] = { .handler = wlc_wsec_key, .desc = "Set/Remove WEP keys" }, + { + .name = "wepauth", + .param = INT, + .handler = wlc_ioctl, + .data.num = ((WLC_GET_AUTH << 16) | WLC_SET_AUTH), + .desc = "WEP authentication type. 0 = OpenSystem, 1 = SharedKey" + }, { .name = "wsec_restrict", .param = INT, @@ -905,6 +912,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))