diff options
| author | Juan Quintela <quintela@redhat.com> | 2023-03-01 19:40:14 +0100 |
|---|---|---|
| committer | Juan Quintela <quintela@redhat.com> | 2023-04-24 15:01:46 +0200 |
| commit | f9e1ef7482f1ee289b04f4b45702a1701bc8929d (patch) | |
| tree | ecd4dcfb6649c0c5c8cd9c15805a7fd152cb7b38 /ui/ui-hmp-cmds.c | |
| parent | c938157713e723165a42cb6e8364adb6fcbd0e22 (diff) | |
| download | focaccia-qemu-f9e1ef7482f1ee289b04f4b45702a1701bc8929d.tar.gz focaccia-qemu-f9e1ef7482f1ee289b04f4b45702a1701bc8929d.zip | |
spice: move client_migrate_info command to ui/
It has nothing to do with migration, except for the "migrate" in the name of the command. Move it with the rest of the ui commands. Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Diffstat (limited to 'ui/ui-hmp-cmds.c')
| -rw-r--r-- | ui/ui-hmp-cmds.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/ui/ui-hmp-cmds.c b/ui/ui-hmp-cmds.c index 5c456ecc02..c671389473 100644 --- a/ui/ui-hmp-cmds.c +++ b/ui/ui-hmp-cmds.c @@ -458,3 +458,20 @@ hmp_screendump(Monitor *mon, const QDict *qdict) end: hmp_handle_error(mon, err); } + +void hmp_client_migrate_info(Monitor *mon, const QDict *qdict) +{ + Error *err = NULL; + const char *protocol = qdict_get_str(qdict, "protocol"); + const char *hostname = qdict_get_str(qdict, "hostname"); + bool has_port = qdict_haskey(qdict, "port"); + int port = qdict_get_try_int(qdict, "port", -1); + bool has_tls_port = qdict_haskey(qdict, "tls-port"); + int tls_port = qdict_get_try_int(qdict, "tls-port", -1); + const char *cert_subject = qdict_get_try_str(qdict, "cert-subject"); + + qmp_client_migrate_info(protocol, hostname, + has_port, port, has_tls_port, tls_port, + cert_subject, &err); + hmp_handle_error(mon, err); +} |