mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 11:51:11 +00:00
vbox: Rewrite vboxNetworkOpen
This commit is contained in:
parent
fac5d061ed
commit
cd7a5d8994
@ -678,6 +678,7 @@ VBOX_DRIVER_SOURCES = \
|
|||||||
vbox/vbox_V4_3.c vbox/vbox_CAPI_v4_3.h \
|
vbox/vbox_V4_3.c vbox/vbox_CAPI_v4_3.h \
|
||||||
vbox/vbox_V4_3_4.c vbox/vbox_CAPI_v4_3_4.h \
|
vbox/vbox_V4_3_4.c vbox/vbox_CAPI_v4_3_4.h \
|
||||||
vbox/vbox_common.c vbox/vbox_common.h \
|
vbox/vbox_common.c vbox/vbox_common.h \
|
||||||
|
vbox/vbox_network.c \
|
||||||
vbox/vbox_uniformed_api.h \
|
vbox/vbox_uniformed_api.h \
|
||||||
vbox/vbox_get_driver.h
|
vbox/vbox_get_driver.h
|
||||||
|
|
||||||
|
60
src/vbox/vbox_network.c
Normal file
60
src/vbox/vbox_network.c
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (C) 2014 Taowei Luo (uaedante@gmail.com)
|
||||||
|
* Copyright (C) 2010-2014 Red Hat, Inc.
|
||||||
|
* Copyright (C) 2008-2009 Sun Microsystems, Inc.
|
||||||
|
*
|
||||||
|
* This library is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU Lesser General Public
|
||||||
|
* License as published by the Free Software Foundation; either
|
||||||
|
* version 2.1 of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This library is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* Lesser General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Lesser General Public
|
||||||
|
* License along with this library. If not, see
|
||||||
|
* <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <config.h>
|
||||||
|
|
||||||
|
#include "internal.h"
|
||||||
|
#include "datatypes.h"
|
||||||
|
#include "domain_conf.h"
|
||||||
|
#include "domain_event.h"
|
||||||
|
#include "virlog.h"
|
||||||
|
|
||||||
|
#include "vbox_common.h"
|
||||||
|
#include "vbox_uniformed_api.h"
|
||||||
|
|
||||||
|
#define VIR_FROM_THIS VIR_FROM_VBOX
|
||||||
|
|
||||||
|
VIR_LOG_INIT("vbox.vbox_network");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The Network Functions here on
|
||||||
|
*/
|
||||||
|
|
||||||
|
virDrvOpenStatus vboxNetworkOpen(virConnectPtr conn,
|
||||||
|
virConnectAuthPtr auth ATTRIBUTE_UNUSED,
|
||||||
|
unsigned int flags)
|
||||||
|
{
|
||||||
|
vboxGlobalData *data = conn->privateData;
|
||||||
|
|
||||||
|
virCheckFlags(VIR_CONNECT_RO, VIR_DRV_OPEN_ERROR);
|
||||||
|
|
||||||
|
if (STRNEQ(conn->driver->name, "VBOX"))
|
||||||
|
goto cleanup;
|
||||||
|
|
||||||
|
if (!data->pFuncs || !data->vboxObj || !data->vboxSession)
|
||||||
|
goto cleanup;
|
||||||
|
|
||||||
|
VIR_DEBUG("network initialized");
|
||||||
|
/* conn->networkPrivateData = some network specific data */
|
||||||
|
return VIR_DRV_OPEN_SUCCESS;
|
||||||
|
|
||||||
|
cleanup:
|
||||||
|
return VIR_DRV_OPEN_DECLINED;
|
||||||
|
}
|
@ -2059,30 +2059,6 @@ _registerDomainEvent(virDriverPtr driver)
|
|||||||
/**
|
/**
|
||||||
* The Network Functions here on
|
* The Network Functions here on
|
||||||
*/
|
*/
|
||||||
static virDrvOpenStatus vboxNetworkOpen(virConnectPtr conn,
|
|
||||||
virConnectAuthPtr auth ATTRIBUTE_UNUSED,
|
|
||||||
unsigned int flags)
|
|
||||||
{
|
|
||||||
vboxGlobalData *data = conn->privateData;
|
|
||||||
|
|
||||||
virCheckFlags(VIR_CONNECT_RO, VIR_DRV_OPEN_ERROR);
|
|
||||||
|
|
||||||
if (STRNEQ(conn->driver->name, "VBOX"))
|
|
||||||
goto cleanup;
|
|
||||||
|
|
||||||
if ((data->pFuncs == NULL) ||
|
|
||||||
(data->vboxObj == NULL) ||
|
|
||||||
(data->vboxSession == NULL))
|
|
||||||
goto cleanup;
|
|
||||||
|
|
||||||
VIR_DEBUG("network initialized");
|
|
||||||
/* conn->networkPrivateData = some network specific data */
|
|
||||||
return VIR_DRV_OPEN_SUCCESS;
|
|
||||||
|
|
||||||
cleanup:
|
|
||||||
return VIR_DRV_OPEN_DECLINED;
|
|
||||||
}
|
|
||||||
|
|
||||||
static int vboxNetworkClose(virConnectPtr conn)
|
static int vboxNetworkClose(virConnectPtr conn)
|
||||||
{
|
{
|
||||||
VIR_DEBUG("network uninitialized");
|
VIR_DEBUG("network uninitialized");
|
||||||
|
@ -534,6 +534,9 @@ typedef struct {
|
|||||||
|
|
||||||
virDomainPtr vboxDomainLookupByUUID(virConnectPtr conn,
|
virDomainPtr vboxDomainLookupByUUID(virConnectPtr conn,
|
||||||
const unsigned char *uuid);
|
const unsigned char *uuid);
|
||||||
|
virDrvOpenStatus vboxNetworkOpen(virConnectPtr conn,
|
||||||
|
virConnectAuthPtr auth,
|
||||||
|
unsigned int flags);
|
||||||
|
|
||||||
/* Version specified functions for installing uniformed API */
|
/* Version specified functions for installing uniformed API */
|
||||||
void vbox22InstallUniformedAPI(vboxUniformedAPI *pVBoxAPI);
|
void vbox22InstallUniformedAPI(vboxUniformedAPI *pVBoxAPI);
|
||||||
|
Loading…
Reference in New Issue
Block a user