blob: 5bdb8208a744f5e95f8a01fc29b2a25047f6ede1 [file] [log] [blame]
Juan Quinteladd4339c2017-04-17 17:07:04 +02001/*
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
Juan Quintela54314712017-04-17 17:15:02 +020021void migration_channel_process_incoming(QIOChannel *ioc);
Juan Quinteladd4339c2017-04-17 17:07:04 +020022
23void migration_channel_connect(MigrationState *s,
24 QIOChannel *ioc,
Dr. David Alan Gilbert688a3dc2017-12-15 17:16:55 +000025 const char *hostname,
26 Error *error_in);
manish.mishra6720c2b2022-12-20 18:44:18 +000027
28int migration_channel_read_peek(QIOChannel *ioc,
29 const char *buf,
30 const size_t buflen,
31 Error **errp);
Juan Quinteladd4339c2017-04-17 17:07:04 +020032#endif