mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-28 11:21:44 +03:00
vbox: Rewrite vboxConnectIsSecure
This commit is contained in:
parent
86142d8e9a
commit
3a959b36fd
@ -422,3 +422,9 @@ char *vboxConnectGetHostname(virConnectPtr conn ATTRIBUTE_UNUSED)
|
||||
{
|
||||
return virGetHostname();
|
||||
}
|
||||
|
||||
int vboxConnectIsSecure(virConnectPtr conn ATTRIBUTE_UNUSED)
|
||||
{
|
||||
/* Driver is using local, non-network based transport */
|
||||
return 1;
|
||||
}
|
||||
|
@ -914,12 +914,6 @@ vboxSocketParseAddrUtf16(vboxGlobalData *data, const PRUnichar *utf16,
|
||||
return result;
|
||||
}
|
||||
|
||||
static int vboxConnectIsSecure(virConnectPtr conn ATTRIBUTE_UNUSED)
|
||||
{
|
||||
/* Driver is using local, non-network based transport */
|
||||
return 1;
|
||||
}
|
||||
|
||||
static int vboxConnectIsEncrypted(virConnectPtr conn ATTRIBUTE_UNUSED)
|
||||
{
|
||||
/* No encryption is needed, or used on the local transport*/
|
||||
|
@ -222,6 +222,7 @@ int vboxConnectClose(virConnectPtr conn);
|
||||
int vboxDomainSave(virDomainPtr dom, const char *path);
|
||||
int vboxConnectGetVersion(virConnectPtr conn, unsigned long *version);
|
||||
char *vboxConnectGetHostname(virConnectPtr conn);
|
||||
int vboxConnectIsSecure(virConnectPtr conn);
|
||||
|
||||
/* Version specified functions for installing uniformed API */
|
||||
void vbox22InstallUniformedAPI(vboxUniformedAPI *pVBoxAPI);
|
||||
|
Loading…
Reference in New Issue
Block a user