]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
hostapd_cli: Add completion for sta command
authorMikael Kanstrup <mikael.kanstrup@sonymobile.com>
Wed, 12 Oct 2016 12:18:55 +0000 (14:18 +0200)
committerJouni Malinen <j@w1.fi>
Sun, 16 Oct 2016 08:55:02 +0000 (11:55 +0300)
Signed-off-by: Mikael Kanstrup <mikael.kanstrup@sonymobile.com>
hostapd/hostapd_cli.c

index 00e73f9178fdb5e954c7b37e04b9f4adb68aa8f3..1d8ba7a90fd3e8dcca07bb97d202fc7dc24ef006 100644 (file)
@@ -286,6 +286,21 @@ static int hostapd_cli_cmd_sta(struct wpa_ctrl *ctrl, int argc, char *argv[])
 }
 
 
+static char ** hostapd_complete_sta(const char *str, int pos)
+{
+       int arg = get_cmd_arg_num(str, pos);
+       char **res = NULL;
+
+       switch (arg) {
+       case 1:
+               res = cli_txt_list_array(&stations);
+               break;
+       }
+
+       return res;
+}
+
+
 static int hostapd_cli_cmd_new_sta(struct wpa_ctrl *ctrl, int argc,
                                   char *argv[])
 {
@@ -1275,7 +1290,7 @@ static const struct hostapd_cli_cmd hostapd_cli_commands[] = {
          "= get MIB variables (dot1x, dot11, radius)" },
        { "relog", hostapd_cli_cmd_relog, NULL, NULL },
        { "status", hostapd_cli_cmd_status, NULL, NULL },
-       { "sta", hostapd_cli_cmd_sta, NULL,
+       { "sta", hostapd_cli_cmd_sta, hostapd_complete_sta,
          "<addr> = get MIB variables for one station" },
        { "all_sta", hostapd_cli_cmd_all_sta, NULL,
           "= get MIB variables for all stations" },