From 6f8c63fbd7edc0b41c09f8f8e2d41a3a65464a43 Mon Sep 17 00:00:00 2001 From: Gerd Hoffmann Date: Mon, 11 Oct 2010 18:03:51 +0200 Subject: spice: connection events. This patch adds support for connection events to spice. The events are quite simliar to the vnc events. Unlike vnc spice uses multiple tcp channels though. qemu will report every single tcp connection (aka spice channel). If you want track spice sessions only you can filter for the main channel (channel-type == 1). Signed-off-by: Gerd Hoffmann --- monitor.h | 3 +++ 1 file changed, 3 insertions(+) (limited to 'monitor.h') diff --git a/monitor.h b/monitor.h index 2d36bba..4f2d328 100644 --- a/monitor.h +++ b/monitor.h @@ -32,6 +32,9 @@ typedef enum MonitorEvent { QEVENT_BLOCK_IO_ERROR, QEVENT_RTC_CHANGE, QEVENT_WATCHDOG, + QEVENT_SPICE_CONNECTED, + QEVENT_SPICE_INITIALIZED, + QEVENT_SPICE_DISCONNECTED, QEVENT_MAX, } MonitorEvent; -- cgit v1.1