diff options
Diffstat (limited to 'hmp-commands.hx')
-rw-r--r-- | hmp-commands.hx | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/hmp-commands.hx b/hmp-commands.hx index 7f0f3974ad..28256209b5 100644 --- a/hmp-commands.hx +++ b/hmp-commands.hx @@ -1791,8 +1791,22 @@ SRST ERST { + .name = "qom-get", + .args_type = "path:s,property:s", + .params = "path property", + .help = "print QOM property", + .cmd = hmp_qom_get, + .flags = "p", + }, + +SRST +``qom-get`` *path* *property* + Print QOM property *property* of object at location *path* +ERST + + { .name = "qom-set", - .args_type = "path:s,property:s,value:s", + .args_type = "path:s,property:s,value:S", .params = "path property value", .help = "set QOM property", .cmd = hmp_qom_set, |