mesh: Add MESH_PEER_REMOVE command
This command allows the specified mesh peer to be disconnected. Signed-off-by: Natsuki Itaya <Natsuki.Itaya@jp.sony.com> Signed-off-by: Masashi Honma <masashi.honma@gmail.com>
This commit is contained in:
parent
f7648c8679
commit
e174ef341b
6 changed files with 56 additions and 2 deletions
|
@ -2042,6 +2042,13 @@ static int wpa_cli_cmd_mesh_group_remove(struct wpa_ctrl *ctrl, int argc,
|
|||
return wpa_cli_cmd(ctrl, "MESH_GROUP_REMOVE", 1, argc, argv);
|
||||
}
|
||||
|
||||
|
||||
static int wpa_cli_cmd_mesh_peer_remove(struct wpa_ctrl *ctrl, int argc,
|
||||
char *argv[])
|
||||
{
|
||||
return wpa_cli_cmd(ctrl, "MESH_PEER_REMOVE", 1, argc, argv);
|
||||
}
|
||||
|
||||
#endif /* CONFIG_MESH */
|
||||
|
||||
|
||||
|
@ -3210,6 +3217,9 @@ static const struct wpa_cli_cmd wpa_cli_commands[] = {
|
|||
{ "mesh_group_remove", wpa_cli_cmd_mesh_group_remove, NULL,
|
||||
cli_cmd_flag_none,
|
||||
"<ifname> = Remove mesh group interface" },
|
||||
{ "mesh_peer_remove", wpa_cli_cmd_mesh_peer_remove, NULL,
|
||||
cli_cmd_flag_none,
|
||||
"<addr> = Remove a mesh peer" },
|
||||
#endif /* CONFIG_MESH */
|
||||
#ifdef CONFIG_P2P
|
||||
{ "p2p_find", wpa_cli_cmd_p2p_find, wpa_cli_complete_p2p_find,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue