]> git.proxmox.com Git - mirror_qemu.git/blame - migration/file.h
Merge tag 'pull-trivial-patches' of https://gitlab.com/mjt0k/qemu into staging
[mirror_qemu.git] / migration / file.h
CommitLineData
2a9e2e59
SS
1/*
2 * Copyright (c) 2021-2023 Oracle and/or its affiliates.
3 *
4 * This work is licensed under the terms of the GNU GPL, version 2 or later.
5 * See the COPYING file in the top-level directory.
6 */
7
8#ifndef QEMU_MIGRATION_FILE_H
9#define QEMU_MIGRATION_FILE_H
2a9e2e59 10
02afba63
FR
11#include "qapi/qapi-types-migration.h"
12
13void file_start_incoming_migration(FileMigrationArgs *file_args, Error **errp);
14
15void file_start_outgoing_migration(MigrationState *s,
16 FileMigrationArgs *file_args, Error **errp);
72a8192e 17int file_parse_offset(char *filespec, uint64_t *offsetp, Error **errp);
2a9e2e59 18#endif