···11+/*
22+ * QEMU live migration via generic fd
33+ *
44+ * Copyright Red Hat, Inc. 2009-2016
55+ *
66+ * Authors:
77+ * Chris Lalancette <clalance@redhat.com>
88+ * Daniel P. Berrange <berrange@redhat.com>
99+ *
1010+ * This work is licensed under the terms of the GNU GPL, version 2. See
1111+ * the COPYING file in the top-level directory.
1212+ *
1313+ * Contributions after 2012-01-13 are licensed under the terms of the
1414+ * GNU GPL, version 2 or (at your option) any later version.
1515+ */
1616+1717+#ifndef QEMU_MIGRATION_FD_H
1818+#define QEMU_MIGRATION_FD_H
1919+void fd_start_incoming_migration(const char *path, Error **errp);
2020+2121+void fd_start_outgoing_migration(MigrationState *s, const char *fdname,
2222+ Error **errp);
2323+#endif