2014-04-12 19:37:53 +00:00
|
|
|
/*
|
|
|
|
* bhyve_domain.h: bhyve domain private state headers
|
|
|
|
*
|
|
|
|
* Copyright (C) 2014 Roman Bogorodskiy
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
2018-12-13 14:53:50 +00:00
|
|
|
#ifndef LIBVIRT_BHYVE_DOMAIN_H
|
|
|
|
# define LIBVIRT_BHYVE_DOMAIN_H
|
2014-04-12 19:37:53 +00:00
|
|
|
|
|
|
|
# include "domain_addr.h"
|
|
|
|
# include "domain_conf.h"
|
|
|
|
|
2015-11-04 15:08:00 +00:00
|
|
|
# include "bhyve_monitor.h"
|
|
|
|
|
2014-04-12 19:37:53 +00:00
|
|
|
typedef struct _bhyveDomainObjPrivate bhyveDomainObjPrivate;
|
|
|
|
typedef bhyveDomainObjPrivate *bhyveDomainObjPrivatePtr;
|
|
|
|
struct _bhyveDomainObjPrivate {
|
|
|
|
virDomainPCIAddressSetPtr pciaddrs;
|
|
|
|
bool persistentAddrs;
|
2015-11-04 15:08:00 +00:00
|
|
|
|
|
|
|
bhyveMonitorPtr mon;
|
2014-04-12 19:37:53 +00:00
|
|
|
};
|
|
|
|
|
2017-01-05 12:31:35 +00:00
|
|
|
virDomainXMLOptionPtr virBhyveDriverCreateXMLConf(bhyveConnPtr);
|
|
|
|
|
2014-04-12 19:37:53 +00:00
|
|
|
extern virDomainXMLPrivateDataCallbacks virBhyveDriverPrivateDataCallbacks;
|
|
|
|
extern virDomainDefParserConfig virBhyveDriverDomainDefParserConfig;
|
2019-01-17 15:07:20 +00:00
|
|
|
extern virDomainXMLNamespace virBhyveDriverDomainXMLNamespace;
|
2014-04-12 19:37:53 +00:00
|
|
|
|
2018-12-13 14:53:50 +00:00
|
|
|
#endif /* LIBVIRT_BHYVE_DOMAIN_H */
|