Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
27 lines
715 B
C
27 lines
715 B
C
/*
|
|
* QEMU live migration via generic fd
|
|
*
|
|
* Copyright Red Hat, Inc. 2009-2016
|
|
*
|
|
* Authors:
|
|
* Chris Lalancette <[email protected]>
|
|
* Daniel P. Berrange <[email protected]>
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
* the COPYING file in the top-level directory.
|
|
*
|
|
* Contributions after 2012-01-13 are licensed under the terms of the
|
|
* GNU GPL, version 2 or (at your option) any later version.
|
|
*/
|
|
|
|
#ifndef QEMU_MIGRATION_FD_H
|
|
#define QEMU_MIGRATION_FD_H
|
|
|
|
#include "io/channel.h"
|
|
|
|
void fd_connect_incoming(const char *fdname, Error **errp);
|
|
|
|
QIOChannel *fd_connect_outgoing(MigrationState *s, const char *fdname,
|
|
Error **errp);
|
|
#endif
|