mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice
synced 2026-01-05 07:59:01 +00:00
Tracking the channels that wait for migration data. If there is a new migration process pending, when all the channels have restored their state, we begin the new migration.
11 lines
301 B
C
11 lines
301 B
C
#ifndef MAIN_DISPATCHER_H
|
|
#define MAIN_DISPATCHER_H
|
|
|
|
#include <spice.h>
|
|
|
|
void main_dispatcher_channel_event(int event, SpiceChannelEventInfo *info);
|
|
void main_dispatcher_seamless_migrate_dst_complete(RedClient *client);
|
|
void main_dispatcher_init(SpiceCoreInterface *core);
|
|
|
|
#endif //MAIN_DISPATCHER_H
|