qapi: Convert getfd and closefd

Signed-off-by: Corey Bryant <coreyb@linux.vnet.ibm.com>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
This commit is contained in:
Corey Bryant 2012-06-22 14:36:09 -04:00 committed by Luiz Capitulino
parent 94c3db85b4
commit 208c9d1b7c
6 changed files with 81 additions and 26 deletions

18
hmp.c
View file

@ -1002,3 +1002,21 @@ void hmp_netdev_del(Monitor *mon, const QDict *qdict)
qmp_netdev_del(id, &err);
hmp_handle_error(mon, &err);
}
void hmp_getfd(Monitor *mon, const QDict *qdict)
{
const char *fdname = qdict_get_str(qdict, "fdname");
Error *errp = NULL;
qmp_getfd(fdname, &errp);
hmp_handle_error(mon, &errp);
}
void hmp_closefd(Monitor *mon, const QDict *qdict)
{
const char *fdname = qdict_get_str(qdict, "fdname");
Error *errp = NULL;
qmp_closefd(fdname, &errp);
hmp_handle_error(mon, &errp);
}