From 8ee9c7822cf3dcd5187a46e784f7a8e3473b51f5 Mon Sep 17 00:00:00 2001 From: Kevin Pouget Date: Thu, 22 Aug 2019 15:17:50 +0200 Subject: [PATCH] protocol: Define an enumeration for Quality Indicator messages These messages are used to transmit streaming quality indicators from SPICE client to SPICE server. The message data structure is defined in spice-common/spice.proto: message { Data data @to_ptr; } @declare quality_indicator; Signed-off-by: Kevin Pouget Acked-by: Frediano Ziglio --- spice/enums.h | 1 + 1 file changed, 1 insertion(+) diff --git a/spice/enums.h b/spice/enums.h index 172cc4d..e88c1b1 100644 --- a/spice/enums.h +++ b/spice/enums.h @@ -468,6 +468,7 @@ enum { SPICE_MSGC_MAIN_MIGRATE_END, SPICE_MSGC_MAIN_MIGRATE_DST_DO_SEAMLESS, SPICE_MSGC_MAIN_MIGRATE_CONNECTED_SEAMLESS, + SPICE_MSGC_MAIN_QUALITY_INDICATOR, SPICE_MSGC_END_MAIN };