mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
monitor: Add host_net_add device argument completion
Also fix the parameters documentation. 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
84007e8181
commit
e3bb532cc7
3 changed files with 19 additions and 1 deletions
16
monitor.c
16
monitor.c
|
@ -4594,6 +4594,22 @@ void migrate_set_capability_completion(ReadLineState *rs, int nb_args,
|
|||
}
|
||||
}
|
||||
|
||||
void host_net_add_completion(ReadLineState *rs, int nb_args, const char *str)
|
||||
{
|
||||
int i;
|
||||
size_t len;
|
||||
if (nb_args != 2) {
|
||||
return;
|
||||
}
|
||||
len = strlen(str);
|
||||
readline_set_completion_index(rs, len);
|
||||
for (i = 0; host_net_devices[i]; i++) {
|
||||
if (!strncmp(host_net_devices[i], str, len)) {
|
||||
readline_add_completion(rs, host_net_devices[i]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
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