]> git.proxmox.com Git - mirror_qemu.git/blame - migration/channel.h
minikconf: do not include variables from MINIKCONF_ARGS in config-all-devices.mak
[mirror_qemu.git] / migration / channel.h
CommitLineData
dd4339c5
JQ
1/*
2 * QEMU live migration channel operations
3 *
4 * Copyright Red Hat, Inc. 2016
5 *
6 * Authors:
7 * Daniel P. Berrange <berrange@redhat.com>
8 *
9 * This work is licensed under the terms of the GNU GPL, version 2. See
10 * the COPYING file in the top-level directory.
11 *
12 * Contributions after 2012-01-13 are licensed under the terms of the
13 * GNU GPL, version 2 or (at your option) any later version.
14 */
15
16#ifndef QEMU_MIGRATION_CHANNEL_H
17#define QEMU_MIGRATION_CHANNEL_H
18
19#include "io/channel.h"
20
54314711 21void migration_channel_process_incoming(QIOChannel *ioc);
dd4339c5
JQ
22
23void migration_channel_connect(MigrationState *s,
24 QIOChannel *ioc,
688a3dcb
DDAG
25 const char *hostname,
26 Error *error_in);
dd4339c5 27#endif