summaryrefslogtreecommitdiffstats
path: root/spice.proto
diff options
context:
space:
mode:
authorYonit Halperin <yhalperi@redhat.com>2011-09-18 10:31:38 +0300
committerYonit Halperin <yhalperi@redhat.com>2011-09-25 15:04:05 +0300
commit5560c56ef05c74da5e0e0825dc1f134019593cad (patch)
treef92176adc424014a7b6f3d47a04b2d7c307298b3 /spice.proto
parent55ccc022ec9829523ebe36fdf0ec7c593ce76c22 (diff)
downloadspice-5560c56ef05c74da5e0e0825dc1f134019593cad.tar.gz
spice-5560c56ef05c74da5e0e0825dc1f134019593cad.tar.xz
spice-5560c56ef05c74da5e0e0825dc1f134019593cad.zip
server,proto: tell the client to connect to the migration target before migraton starts
(1) send SPICE_MSG_MAIN_MIGRATE_BEGIN upon spice_server_migrate_connect (2) wait for SPICE_MSGC_MAIN_MIGRATE_(CONNECTED|CONNECT_ERROR), or a timeout, in order to complete client_migrate_info monitor command
Diffstat (limited to 'spice.proto')
-rw-r--r--spice.proto5
1 files changed, 2 insertions, 3 deletions
diff --git a/spice.proto b/spice.proto
index 6160de1d..d5b954e8 100644
--- a/spice.proto
+++ b/spice.proto
@@ -167,9 +167,8 @@ channel MainChannel : BaseChannel {
uint16 sport;
uint32 host_size;
uint8 *host_data[host_size] @zero_terminated @marshall @nonnull;
- pubkey_type pub_key_type;
- uint32 pub_key_size;
- uint8 *pub_key_data[pub_key_size] @zero_terminated @marshall @nonnull;
+ uint32 cert_subject_size;
+ uint8 *cert_subject_data[cert_subject_size] @zero_terminated @marshall;
} @ctype(SpiceMsgMainMigrationBegin) migrate_begin = 101;
Empty migrate_cancel;