mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2025-12-27 15:45:54 +00:00
Use dash instead of underscores for file names. This is coherent with rest of file names. Rename all tests to test-XXX and remove the spice- prefix when present. This is coherent with most of the tests. Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Pavel Grunt <pgrunt@redhat.com>
76 lines
1.9 KiB
C
76 lines
1.9 KiB
C
/* -*- Mode: C; c-basic-offset: 4; indent-tabs-mode: nil -*- */
|
|
/*
|
|
Copyright (C) 2009-2015 Red Hat, Inc.
|
|
|
|
This library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
/**
|
|
* Test vdagent guest to server messages
|
|
*/
|
|
|
|
#include <config.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
#include <spice/vd_agent.h>
|
|
|
|
#include "test-display-base.h"
|
|
|
|
SpiceCoreInterface *core;
|
|
SpiceTimer *ping_timer;
|
|
|
|
int ping_ms = 100;
|
|
|
|
#ifndef MIN
|
|
#define MIN(a, b) ((a) > (b) ? (b) : (a))
|
|
#endif
|
|
|
|
void pinger(SPICE_GNUC_UNUSED void *opaque)
|
|
{
|
|
// show_channels is not thread safe - fails if disconnections / connections occur
|
|
//show_channels(server);
|
|
|
|
core->timer_start(ping_timer, ping_ms);
|
|
}
|
|
|
|
static SpiceBaseInterface base = {
|
|
.type = SPICE_INTERFACE_CHAR_DEVICE,
|
|
.description = "test spice virtual channel char device",
|
|
.major_version = SPICE_INTERFACE_CHAR_DEVICE_MAJOR,
|
|
.minor_version = SPICE_INTERFACE_CHAR_DEVICE_MINOR,
|
|
};
|
|
|
|
SpiceCharDeviceInstance vmc_instance = {
|
|
.subtype = "vdagent",
|
|
};
|
|
|
|
int main(void)
|
|
{
|
|
Test *test;
|
|
|
|
core = basic_event_loop_init();
|
|
test = test_new(core);
|
|
|
|
vmc_instance.base.sif = &base;
|
|
spice_server_add_interface(test->server, &vmc_instance.base);
|
|
|
|
ping_timer = core->timer_add(pinger, NULL);
|
|
core->timer_start(ping_timer, ping_ms);
|
|
|
|
basic_event_loop_mainloop();
|
|
|
|
return 0;
|
|
}
|