mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 05:35:25 +00:00
f87fa77ca9
This API has the same semantics as 'virDomainQemuMonitorCommand' but accepts file descriptors which are then forwarded to qemu. Signed-off-by: Peter Krempa <pkrempa@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
38 lines
958 B
Plaintext
38 lines
958 B
Plaintext
#
|
|
# Officially exported symbols, for which header
|
|
# file definitions are installed in /usr/include/libvirt
|
|
# from libvirt-qemu.h
|
|
#
|
|
# Versions here are *fixed* to match the libvirt version
|
|
# at which the symbol was introduced. This ensures that
|
|
# a new client app requiring symbol foo() can't accidentally
|
|
# run with old libvirt-qemu.so not providing foo() - the global
|
|
# soname version info can't enforce this since we never
|
|
# change the soname
|
|
#
|
|
LIBVIRT_QEMU_0.8.3 {
|
|
global:
|
|
virDomainQemuMonitorCommand;
|
|
};
|
|
|
|
LIBVIRT_QEMU_0.9.4 {
|
|
global:
|
|
virDomainQemuAttach;
|
|
} LIBVIRT_QEMU_0.8.3;
|
|
|
|
LIBVIRT_QEMU_0.10.0 {
|
|
global:
|
|
virDomainQemuAgentCommand;
|
|
} LIBVIRT_QEMU_0.9.4;
|
|
|
|
LIBVIRT_QEMU_1.2.3 {
|
|
global:
|
|
virConnectDomainQemuMonitorEventDeregister;
|
|
virConnectDomainQemuMonitorEventRegister;
|
|
} LIBVIRT_QEMU_0.10.0;
|
|
|
|
LIBVIRT_QEMU_8.2.0 {
|
|
global:
|
|
virDomainQemuMonitorCommandWithFiles;
|
|
} LIBVIRT_QEMU_1.2.3;
|