wpa_cli: Add BSSID tab completion for set bssid_filter

Signed-hostap: Jouni Malinen <j@w1.fi>
This commit is contained in:
Jouni Malinen 2013-05-05 12:20:35 +03:00
parent 215658726f
commit 69aa33411e

View file

@ -631,6 +631,9 @@ static char ** wpa_cli_complete_set(const char *str, int pos)
return res; return res;
} }
if (arg > 1 && os_strncasecmp(str, "set bssid_filter ", 17) == 0)
return cli_txt_list_array(&bsses);
return NULL; return NULL;
} }