mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-01 10:51:12 +00:00
1a38fbaa86
Enable libvirt users to modify logging filters of a daemon from outside. Signed-off-by: Erik Skultety <eskultet@redhat.com>
50 lines
1.5 KiB
Plaintext
50 lines
1.5 KiB
Plaintext
#
|
|
# Officially exported symbols, for which header
|
|
# file definitions are installed in /usr/include/libvirt
|
|
# from libvirt-admin.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-admin.so not providing foo() - the global
|
|
# soname version info can't enforce this since we never
|
|
# change the soname
|
|
#
|
|
LIBVIRT_ADMIN_2.0.0 {
|
|
global:
|
|
virAdmInitialize;
|
|
virAdmClientFree;
|
|
virAdmClientGetID;
|
|
virAdmClientGetTimestamp;
|
|
virAdmClientGetTransport;
|
|
virAdmConnectOpen;
|
|
virAdmConnectClose;
|
|
virAdmConnectRef;
|
|
virAdmGetVersion;
|
|
virAdmConnectIsAlive;
|
|
virAdmConnectGetURI;
|
|
virAdmConnectGetLibVersion;
|
|
virAdmConnectRegisterCloseCallback;
|
|
virAdmConnectUnregisterCloseCallback;
|
|
virAdmConnectListServers;
|
|
virAdmServerGetName;
|
|
virAdmServerGetThreadPoolParameters;
|
|
virAdmServerFree;
|
|
virAdmServerLookupClient;
|
|
virAdmConnectLookupServer;
|
|
virAdmServerSetThreadPoolParameters;
|
|
virAdmServerListClients;
|
|
virAdmClientGetInfo;
|
|
virAdmClientClose;
|
|
virAdmServerGetClientLimits;
|
|
virAdmServerSetClientLimits;
|
|
};
|
|
|
|
LIBVIRT_ADMIN_3.0.0 {
|
|
global:
|
|
virAdmConnectGetLoggingOutputs;
|
|
virAdmConnectGetLoggingFilters;
|
|
virAdmConnectSetLoggingOutputs;
|
|
virAdmConnectSetLoggingFilters;
|
|
} LIBVIRT_ADMIN_2.0.0;
|