diff options
author | Markus Armbruster <armbru@redhat.com> | 2010-03-25 17:22:40 +0100 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2010-04-18 23:55:16 +0200 |
commit | ae82d3242d9db904f8ab81a5c7d796ae2eb46f04 (patch) | |
tree | 11590aa8680b6bcd349d5981e34d8162fecd6f33 /qemu-monitor.hx | |
parent | 5124eb5927d4d90adc5640e5d36a589bfadd1828 (diff) |
monitor: New commands netdev_add, netdev_del
Monitor commands to go with -netdev.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
Diffstat (limited to 'qemu-monitor.hx')
-rw-r--r-- | qemu-monitor.hx | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/qemu-monitor.hx b/qemu-monitor.hx index d290b4b57f..31087bdd35 100644 --- a/qemu-monitor.hx +++ b/qemu-monitor.hx @@ -914,6 +914,36 @@ STEXI Remove host VLAN client. ETEXI + { + .name = "netdev_add", + .args_type = "netdev:O", + .params = "[user|tap|socket],id=str[,prop=value][,...]", + .help = "add host network device", + .user_print = monitor_user_noop, + .mhandler.cmd_new = do_netdev_add, + }, + +STEXI +@item netdev_add +@findex netdev_add +Add host network device. +ETEXI + + { + .name = "netdev_del", + .args_type = "id:s", + .params = "id", + .help = "remove host network device", + .user_print = monitor_user_noop, + .mhandler.cmd_new = do_netdev_del, + }, + +STEXI +@item netdev_del +@findex netdev_del +Remove host network device. +ETEXI + #ifdef CONFIG_SLIRP { .name = "hostfwd_add", |