xref: /qemu/include/migration/client-options.h (revision 4a1babe5)
1 /*
2  * QEMU public migration capabilities
3  *
4  * Copyright (c) 2012-2023 Red Hat Inc
5  *
6  * This work is licensed under the terms of the GNU GPL, version 2 or later.
7  * See the COPYING file in the top-level directory.
8  */
9 
10 #ifndef QEMU_MIGRATION_CLIENT_OPTIONS_H
11 #define QEMU_MIGRATION_CLIENT_OPTIONS_H
12 
13 /* capabilities */
14 
15 bool migrate_background_snapshot(void);
16 bool migrate_dirty_limit(void);
17 bool migrate_postcopy_ram(void);
18 bool migrate_switchover_ack(void);
19 
20 /* parameters */
21 
22 MigMode migrate_mode(void);
23 uint64_t migrate_vcpu_dirty_limit_period(void);
24 
25 #endif
26