aboutsummaryrefslogtreecommitdiffstats
path: root/src/ap
diff options
context:
space:
mode:
authorAnton Nayshtut <qca_antonn@qca.qualcomm.com>2015-01-21 15:30:48 +0200
committerLinux Build Service Account <lnxbuild@localhost>2015-10-06 03:19:32 -0600
commit3a08d5f7dfcf846c2c394d29a71df1b379df98a5 (patch)
tree4bfb7f7d39cc41faa294b317b933393aabbd15cc /src/ap
parent22db13345f4deaa042890efa8f4028fa382a1afd (diff)
downloadandroid_external_wpa_supplicant_8-3a08d5f7dfcf846c2c394d29a71df1b379df98a5.tar.gz
android_external_wpa_supplicant_8-3a08d5f7dfcf846c2c394d29a71df1b379df98a5.tar.bz2
android_external_wpa_supplicant_8-3a08d5f7dfcf846c2c394d29a71df1b379df98a5.zip
FST: hostapd control interface
Change-Id: I6ca7b6b6691be3878024c44cae9947195a0af5c6 Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com> Git-commit: 8e9a8b0f8cb5e9060c3df59feafe9adfb7ff8f92 Git-repo: git://w1.fi/srv/git/hostap.git CRs-Fixed: 891455
Diffstat (limited to 'src/ap')
-rw-r--r--src/ap/ctrl_iface_ap.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/ap/ctrl_iface_ap.c b/src/ap/ctrl_iface_ap.c
index 60afcb08..c98978f3 100644
--- a/src/ap/ctrl_iface_ap.c
+++ b/src/ap/ctrl_iface_ap.c
@@ -12,6 +12,7 @@
#include "common/ieee802_11_defs.h"
#include "common/sae.h"
#include "eapol_auth/eapol_auth_sm.h"
+#include "fst/fst_ctrl_iface.h"
#include "hostapd.h"
#include "ieee802_1x.h"
#include "wpa_auth.h"
@@ -206,7 +207,10 @@ int hostapd_ctrl_iface_sta(struct hostapd_data *hapd, const char *txtaddr,
return -1;
}
- return hostapd_ctrl_iface_sta_mib(hapd, sta, buf, buflen);
+ ret = hostapd_ctrl_iface_sta_mib(hapd, sta, buf, buflen);
+ ret += fst_ctrl_iface_mb_info(addr, buf + ret, buflen - ret);
+
+ return ret;
}