mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-01 23:03:54 -06:00
monitor: Add netdev_del id argument completion.
Signed-off-by: Hani Benhabiles <hani@linux.com> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com> Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
This commit is contained in:
parent
b162b49adc
commit
11b389f21e
3 changed files with 28 additions and 0 deletions
26
monitor.c
26
monitor.c
|
@ -4493,6 +4493,32 @@ void set_link_completion(ReadLineState *rs, int nb_args, const char *str)
|
|||
}
|
||||
}
|
||||
|
||||
void netdev_del_completion(ReadLineState *rs, int nb_args, const char *str)
|
||||
{
|
||||
int len, count, i;
|
||||
NetClientState *ncs[255];
|
||||
|
||||
if (nb_args != 2) {
|
||||
return;
|
||||
}
|
||||
|
||||
len = strlen(str);
|
||||
readline_set_completion_index(rs, len);
|
||||
count = qemu_find_net_clients_except(NULL, ncs, NET_CLIENT_OPTIONS_KIND_NIC,
|
||||
255);
|
||||
for (i = 0; i < count; i++) {
|
||||
QemuOpts *opts;
|
||||
const char *name = ncs[i]->name;
|
||||
if (strncmp(str, name, len)) {
|
||||
continue;
|
||||
}
|
||||
opts = qemu_opts_find(qemu_find_opts_err("netdev", NULL), name);
|
||||
if (opts) {
|
||||
readline_add_completion(rs, name);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void monitor_find_completion_by_table(Monitor *mon,
|
||||
const mon_cmd_t *cmd_table,
|
||||
char **args,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue