|
@@ -1,6 +1,6 @@
|
|
|
/*
|
|
|
* hostapd / UNIX domain socket -based control interface
|
|
|
- * Copyright (c) 2004-2013, Jouni Malinen <j@w1.fi>
|
|
|
+ * Copyright (c) 2004-2014, Jouni Malinen <j@w1.fi>
|
|
|
*
|
|
|
* This software may be distributed under the terms of the BSD license.
|
|
|
* See README for more details.
|
|
@@ -1140,6 +1140,8 @@ static void hostapd_ctrl_iface_receive(int sock, void *eloop_ctx,
|
|
|
} else if (os_strcmp(buf, "STATUS") == 0) {
|
|
|
reply_len = hostapd_ctrl_iface_status(hapd, reply,
|
|
|
reply_size);
|
|
|
+ } else if (os_strcmp(buf, "STATUS-DRIVER") == 0) {
|
|
|
+ reply_len = hostapd_drv_status(hapd, reply, reply_size);
|
|
|
} else if (os_strcmp(buf, "MIB") == 0) {
|
|
|
reply_len = ieee802_11_get_mib(hapd, reply, reply_size);
|
|
|
if (reply_len >= 0) {
|