mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 05:35:25 +00:00
admin: introduce virAdmGetVersion
Unfortunately, client side version retrieval API virGetVersion uses one-time initialization (due to the fact we might not have initialized the library by calling connect prior to this) which is not completely compatible with admin initialization. This API is rather simplistic and reimplementing it for admin might be the preferred method of reusing it. Note that even though the method will be reimplemented, the version number is still the same for both the libvirt and libvirt-admin library.
This commit is contained in:
parent
c4bdff191b
commit
b32f715d5b
@ -56,6 +56,9 @@ int virAdmConnectClose(virAdmConnectPtr conn);
|
||||
|
||||
int virAdmConnectRef(virAdmConnectPtr conn);
|
||||
|
||||
int virAdmGetVersion(unsigned long long *libVer);
|
||||
|
||||
|
||||
# ifdef __cplusplus
|
||||
}
|
||||
# endif
|
||||
|
@ -386,3 +386,37 @@ virAdmConnectRef(virAdmConnectPtr conn)
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* virAdmGetVersion:
|
||||
* @libVer: where to store the library version
|
||||
*
|
||||
* Provides version information. @libVer is the version of the library and will
|
||||
* allways be set unless an error occurs in which case an error code and a
|
||||
* generic message will be returned. @libVer format is as follows:
|
||||
* major * 1,000,000 + minor * 1,000 + release.
|
||||
*
|
||||
* NOTE: To get the remote side library version use virAdmConnectGetLibVersion
|
||||
* instead.
|
||||
*
|
||||
* Returns 0 on success, -1 in case of an error.
|
||||
*/
|
||||
int
|
||||
virAdmGetVersion(unsigned long long *libVer)
|
||||
{
|
||||
if (virAdmInitialize() < 0)
|
||||
goto error;
|
||||
|
||||
VIR_DEBUG("libVer=%p", libVer);
|
||||
|
||||
virResetLastError();
|
||||
if (!libVer)
|
||||
goto error;
|
||||
*libVer = LIBVIR_VERSION_NUMBER;
|
||||
|
||||
return 0;
|
||||
|
||||
error:
|
||||
virDispatchError(NULL);
|
||||
return -1;
|
||||
}
|
||||
|
@ -15,4 +15,5 @@ LIBVIRT_ADMIN_1.3.0 {
|
||||
virAdmConnectOpen;
|
||||
virAdmConnectClose;
|
||||
virAdmConnectRef;
|
||||
virAdmGetVersion;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user