summaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorAlon Levy <alevy@redhat.com>2012-02-15 15:09:13 +0200
committerAlon Levy <alevy@redhat.com>2012-02-15 15:09:13 +0200
commit7e3fb815ccdfd7ab42ed8b03958ec00e470e1e8f (patch)
tree98651e2cfdb354e47fc8dbbfe11ca833740ba4c4 /server
parent5ec8515508828ecf5055de220cb0cc0f3c997a27 (diff)
downloadspice-7e3fb815ccdfd7ab42ed8b03958ec00e470e1e8f.tar.gz
spice-7e3fb815ccdfd7ab42ed8b03958ec00e470e1e8f.tar.xz
spice-7e3fb815ccdfd7ab42ed8b03958ec00e470e1e8f.zip
server/tests/basic_event_loop: print something on channel_event
Diffstat (limited to 'server')
-rw-r--r--server/tests/basic_event_loop.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/tests/basic_event_loop.c b/server/tests/basic_event_loop.c
index 70eb0269..34bb1784 100644
--- a/server/tests/basic_event_loop.c
+++ b/server/tests/basic_event_loop.c
@@ -115,7 +115,8 @@ static void watch_remove(SpiceWatch *watch)
static void channel_event(int event, SpiceChannelEventInfo *info)
{
- NOT_IMPLEMENTED
+ DPRINTF(0, "channel event con, type, id, event: %ld, %d, %d, %d\n",
+ info->connection_id, info->type, info->id, event);
}
SpiceTimer *get_next_timer(void)