Remote driver client and server for virDomainOpenConsole

This provides an implementation of the virDomainOpenConsole
API for the remote driver client and server.

* daemon/remote.c: Server side impl
* src/remote/remote_driver.c: Client impl
* src/remote/remote_protocol.x: Wire definition
This commit is contained in:
Daniel P. Berrange
2010-07-23 13:57:14 +01:00
parent 88a9b382c6
commit 73d8b03cda
9 changed files with 165 additions and 20 deletions

View File

@@ -1352,6 +1352,11 @@ struct remote_domain_snapshot_delete_args {
remote_nonnull_domain_snapshot snap;
int flags;
};
struct remote_domain_open_console_args {
remote_nonnull_domain domain;
remote_string devname;
u_int flags;
};
struct remote_message_header {
u_int prog;
u_int vers;