mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-23 14:15:28 +00:00
acf522e85a
Commit0c6ad476
updated gnulib, which rearranged some of the conditions in gnulib wrapper headers such that compilation started failing on BSD systems when the normal system <unistd.h> tried to include another system header but instead got a gnulib wrapper header in an incomplete state; this is because gnulib headers only work if <config.h> is included first. Commitb6f78259
papered over the symptoms of that by including <config.h> in all the examples. But this logic is backwards - if our examples are truly meant to be stand-alone, they should NOT depend on how libvirt was configured, and should NOT depend on the gnulib fixes for system quirks. In particular, if an example does not need to link against libgnulib.la, then it also does not need to use -Ignulib in its compile flags, and likewise does not need to include <config.h> since none of the gnulib wrapper headers should be interfering. So, revert (most of)b6f78259
(except for the bogus pre-patch use of "config.h" in admin/logging.c: if config.h is included, it should be via <> rather than "", and must be before any system headers); then additionally nuke all mention of <config.h>, -Ignulib, and -llibgnu.la, making all of the examples truly standalone. Signed-off-by: Eric Blake <eblake@redhat.com> Acked-by: Michal Privoznik <mprivozn@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
43 lines
1.3 KiB
C
43 lines
1.3 KiB
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <libvirt/libvirt-admin.h>
|
|
|
|
int main(void)
|
|
{
|
|
int ret = -1;
|
|
virAdmConnectPtr conn = NULL;
|
|
virAdmServerPtr *servers = NULL; /* where to store the servers */
|
|
virAdmServerPtr *tmp = NULL;
|
|
ssize_t i = 0;
|
|
int count = 0;
|
|
|
|
/* first, open a connection to the daemon */
|
|
if (!(conn = virAdmConnectOpen(NULL, 0)))
|
|
goto cleanup;
|
|
|
|
/* get the available servers on the default daemon - libvirtd */
|
|
if ((count = virAdmConnectListServers(conn, &servers, 0)) < 0)
|
|
goto cleanup;
|
|
|
|
/* let's print the available servers, we have 2 options how to interate
|
|
* over the returned list, use @count as the boundary or use the fact
|
|
* that @servers are guaranteed to contain 1 extra element NULL;
|
|
* this example uses the second option
|
|
*/
|
|
printf(" %-15s\n", "Server name");
|
|
printf("---------------\n");
|
|
for (tmp = servers; *tmp; tmp++)
|
|
printf(" %-15s\n", virAdmServerGetName(*tmp));
|
|
|
|
ret = 0;
|
|
cleanup:
|
|
/* Once finished, free the list of servers and close the connection
|
|
* properly, @conn will be deallocated automatically
|
|
*/
|
|
for (i = 0; i < count; i++)
|
|
virAdmServerFree(servers[i]);
|
|
free(servers);
|
|
virAdmConnectClose(conn);
|
|
return ret;
|
|
}
|