50 lines
1.4 KiB
Diff
50 lines
1.4 KiB
Diff
commit 5ef6d92292f5c9dd27c7db2bf56f8f24b13c681b
|
|
Author: Jim Fehlig <jfehlig@novell.com>
|
|
Date: Wed Jan 13 18:39:35 2010 -0700
|
|
|
|
Wire protocol format
|
|
|
|
Definition of wire protocol format for
|
|
virDomain{Attach,Detach}DeviceFlags.
|
|
|
|
diff --git a/src/remote/remote_protocol.x b/src/remote/remote_protocol.x
|
|
index bed3940..98953a9 100644
|
|
--- a/src/remote/remote_protocol.x
|
|
+++ b/src/remote/remote_protocol.x
|
|
@@ -708,11 +708,23 @@ struct remote_domain_attach_device_args {
|
|
remote_nonnull_string xml;
|
|
};
|
|
|
|
+struct remote_domain_attach_device_flags_args {
|
|
+ remote_nonnull_domain dom;
|
|
+ remote_nonnull_string xml;
|
|
+ unsigned int flags;
|
|
+};
|
|
+
|
|
struct remote_domain_detach_device_args {
|
|
remote_nonnull_domain dom;
|
|
remote_nonnull_string xml;
|
|
};
|
|
|
|
+struct remote_domain_detach_device_flags_args {
|
|
+ remote_nonnull_domain dom;
|
|
+ remote_nonnull_string xml;
|
|
+ unsigned int flags;
|
|
+};
|
|
+
|
|
struct remote_domain_get_autostart_args {
|
|
remote_nonnull_domain dom;
|
|
};
|
|
@@ -1641,7 +1653,10 @@ enum remote_procedure {
|
|
REMOTE_PROC_INTERFACE_IS_ACTIVE = 156,
|
|
REMOTE_PROC_GET_LIB_VERSION = 157,
|
|
REMOTE_PROC_CPU_COMPARE = 158,
|
|
- REMOTE_PROC_DOMAIN_MEMORY_STATS = 159
|
|
+ REMOTE_PROC_DOMAIN_MEMORY_STATS = 159,
|
|
+ REMOTE_PROC_DOMAIN_ATTACH_DEVICE_FLAGS = 160,
|
|
+
|
|
+ REMOTE_PROC_DOMAIN_DETACH_DEVICE_FLAGS = 161
|
|
|
|
/*
|
|
* Notice how the entries are grouped in sets of 10 ?
|