mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-02 11:21:12 +00:00
bb03636827
A number of the remote procedure names did not match the corresponding API names. For example, many lacked the word 'CONNECT', others re-arranged the names. Update the procedures so their names exactly match the API names. Then remove the special case handling of these APIs in the generator Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
36 lines
1.0 KiB
C
36 lines
1.0 KiB
C
/* -*- c -*- */
|
|
struct remote_nonnull_domain {
|
|
remote_nonnull_string name;
|
|
remote_uuid uuid;
|
|
int id;
|
|
};
|
|
struct qemu_domain_monitor_command_args {
|
|
remote_nonnull_domain dom;
|
|
remote_nonnull_string cmd;
|
|
u_int flags;
|
|
};
|
|
struct qemu_domain_monitor_command_ret {
|
|
remote_nonnull_string result;
|
|
};
|
|
struct qemu_domain_attach_args {
|
|
u_int pid_value;
|
|
u_int flags;
|
|
};
|
|
struct qemu_domain_attach_ret {
|
|
remote_nonnull_domain dom;
|
|
};
|
|
struct qemu_domain_agent_command_args {
|
|
remote_nonnull_domain dom;
|
|
remote_nonnull_string cmd;
|
|
int timeout;
|
|
u_int flags;
|
|
};
|
|
struct qemu_domain_agent_command_ret {
|
|
remote_string result;
|
|
};
|
|
enum qemu_procedure {
|
|
QEMU_PROC_DOMAIN_MONITOR_COMMAND = 1,
|
|
QEMU_PROC_DOMAIN_ATTACH = 2,
|
|
QEMU_PROC_DOMAIN_AGENT_COMMAND = 3,
|
|
};
|