Re: [libvirt] [PATCH v2 6/9] admin: Add URI support and introduce virAdmGetDefaultURI

2015-11-04 Thread Erik Skultety
On 05/11/15 00:11, John Ferlan wrote: > > > On 10/16/2015 02:12 PM, Erik Skultety wrote: >> Since virt-admin should be able to connect to various admin servers >> on hosted different daemons, we need to provide URI support to >> libvirt-admin. >> --- >> include/libvirt/libvirt-admin.h | 2 +

Re: [libvirt] [PATCH v2 6/9] admin: Add URI support and introduce virAdmGetDefaultURI

2015-11-04 Thread John Ferlan
On 10/16/2015 02:12 PM, Erik Skultety wrote: > Since virt-admin should be able to connect to various admin servers > on hosted different daemons, we need to provide URI support to > libvirt-admin. > --- > include/libvirt/libvirt-admin.h | 2 + > src/datatypes.c | 2 + > src/d

Re: [libvirt] [PATCH v2 6/9] admin: Add URI support and introduce virAdmGetDefaultURI

2015-11-04 Thread Erik Skultety
>> /** >> * virAdmConnectOpen: >> * @name: uri of the daemon to connect to, NULL for default >> @@ -170,6 +199,7 @@ virAdmConnectOpen(const char *name, unsigned int >> flags) >> { >> char *sock_path = NULL; >> virAdmConnectPtr conn = NULL; >> +virConfPtr conf = NULL; >> >> if (vir

Re: [libvirt] [PATCH v2 6/9] admin: Add URI support and introduce virAdmGetDefaultURI

2015-11-03 Thread Martin Kletzander
On Fri, Oct 16, 2015 at 08:12:23PM +0200, Erik Skultety wrote: Since virt-admin should be able to connect to various admin servers on hosted different daemons, we need to provide URI support to libvirt-admin. --- include/libvirt/libvirt-admin.h | 2 + src/datatypes.c | 2 + src/

[libvirt] [PATCH v2 6/9] admin: Add URI support and introduce virAdmGetDefaultURI

2015-10-16 Thread Erik Skultety
Since virt-admin should be able to connect to various admin servers on hosted different daemons, we need to provide URI support to libvirt-admin. --- include/libvirt/libvirt-admin.h | 2 + src/datatypes.c | 2 + src/datatypes.h | 1 + src/libvirt-admin.c