Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
28 lines
985 B
C
28 lines
985 B
C
/*
|
|
* Copyright (c) 2021-2023 Oracle and/or its affiliates.
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*/
|
|
|
|
#ifndef QEMU_MIGRATION_FILE_H
|
|
#define QEMU_MIGRATION_FILE_H
|
|
|
|
#include "qapi/qapi-types-migration.h"
|
|
#include "io/channel.h"
|
|
#include "io/task.h"
|
|
#include "channel.h"
|
|
#include "multifd.h"
|
|
|
|
void file_connect_incoming(FileMigrationArgs *file_args, Error **errp);
|
|
|
|
QIOChannel *file_connect_outgoing(MigrationState *s,
|
|
FileMigrationArgs *file_args, Error **errp);
|
|
int file_parse_offset(char *filespec, uint64_t *offsetp, Error **errp);
|
|
void file_cleanup_outgoing_migration(void);
|
|
bool file_send_channel_create(gpointer opaque, Error **errp);
|
|
int file_write_ramblock_iov(QIOChannel *ioc, const struct iovec *iov,
|
|
int niov, MultiFDPages_t *pages, Error **errp);
|
|
int multifd_file_recv_data(MultiFDRecvParams *p, Error **errp);
|
|
#endif
|