diff options
Diffstat (limited to 'hmp.c')
| -rw-r--r-- | hmp.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/hmp.c b/hmp.c index 4c6d4ae942..6b72a64d99 100644 --- a/hmp.c +++ b/hmp.c @@ -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); +} |