From fbf796fd6f855313d2c02b7d8e1a0c4241b1e0b6 Mon Sep 17 00:00:00 2001 From: Luiz Capitulino Date: Wed, 7 Dec 2011 11:17:51 -0200 Subject: qapi: Convert set_password Signed-off-by: Anthony Liguori Signed-off-by: Luiz Capitulino --- hmp.c | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'hmp.c') diff --git a/hmp.c b/hmp.c index 8a777804de..888e1b96ce 100644 --- a/hmp.c +++ b/hmp.c @@ -681,3 +681,14 @@ void hmp_migrate_set_speed(Monitor *mon, const QDict *qdict) int64_t value = qdict_get_int(qdict, "value"); qmp_migrate_set_speed(value, NULL); } + +void hmp_set_password(Monitor *mon, const QDict *qdict) +{ + const char *protocol = qdict_get_str(qdict, "protocol"); + const char *password = qdict_get_str(qdict, "password"); + const char *connected = qdict_get_try_str(qdict, "connected"); + Error *err = NULL; + + qmp_set_password(protocol, password, !!connected, connected, &err); + hmp_handle_error(mon, &err); +} -- cgit v1.2.3