]> Git Repo - qemu.git/blame - migration/socket.h
Merge remote-tracking branch 'remotes/dgilbert/tags/pull-migration-20180323a' into...
[qemu.git] / migration / socket.h
CommitLineData
61e8b148
JQ
1/*
2 * QEMU live migration via socket
3 *
4 * Copyright Red Hat, Inc. 2009-2016
5 *
6 * Authors:
7 * Chris Lalancette <[email protected]>
8 * Daniel P. Berrange <[email protected]>
9 *
10 * This work is licensed under the terms of the GNU GPL, version 2. See
11 * the COPYING file in the top-level directory.
12 *
13 * Contributions after 2012-01-13 are licensed under the terms of the
14 * GNU GPL, version 2 or (at your option) any later version.
15 */
16
17#ifndef QEMU_MIGRATION_SOCKET_H
18#define QEMU_MIGRATION_SOCKET_H
19void tcp_start_incoming_migration(const char *host_port, Error **errp);
20
21void tcp_start_outgoing_migration(MigrationState *s, const char *host_port,
22 Error **errp);
23
24void unix_start_incoming_migration(const char *path, Error **errp);
25
26void unix_start_outgoing_migration(MigrationState *s, const char *path,
27 Error **errp);
28#endif
This page took 0.069854 seconds and 4 git commands to generate.