[Spice-devel] [RFC PATH 3/3] Add error reports from server to guest

Frediano Ziglio fziglio at redhat.com
Wed Apr 19 15:26:14 UTC 2017


---
 spice/stream-device.h | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/spice/stream-device.h b/spice/stream-device.h
index 61d9019..10060ad 100644
--- a/spice/stream-device.h
+++ b/spice/stream-device.h
@@ -54,6 +54,8 @@ typedef enum StreamDevType {
     STREAM_TYPE_DATA,
     /* server ask to start a new stream */
     STREAM_TYPE_START_STOP,
+    /* server notify errors to guest */
+    STREAM_TYPE_NOTIFY_ERROR,
 } StreamDevType;
 
 /* generic extension capabilities */
@@ -96,4 +98,20 @@ typedef struct StreamMsgStartStop {
     uint8_t codecs[0];
 } StreamMsgStartStop;
 
+/* Tell guest about invalid protocol.
+ * This message is sent by the host to the guest.
+ * The server will stop processing data from the guest.
+ */
+typedef struct StreamMsgNotifyError {
+    /* numeric error code.
+     * Currently not defined, set to 0.
+     */
+    uint32_t error_code;
+    /* String message, UTF-8 encoded.
+     * This field terminate with the message.
+     * Not necessary NUL-terminated.
+     */
+    uint8_t msg[0];
+} StreamMsgNotifyError;
+
 #endif /* SPICE_STREAM_DEVICE_H_ */
-- 
2.9.3



More information about the Spice-devel mailing list