2014-02-18 10:08:10 +00:00
|
|
|
/*
|
|
|
|
* bhyve_driver.h: core driver methods for managing bhyve guests
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __BHYVE_DRIVER_H__
|
|
|
|
# define __BHYVE_DRIVER_H__
|
|
|
|
|
2016-02-06 02:26:51 +00:00
|
|
|
# include "capabilities.h"
|
|
|
|
# include "bhyve_utils.h"
|
2016-02-05 21:36:42 +00:00
|
|
|
|
2014-02-18 10:08:10 +00:00
|
|
|
int bhyveRegister(void);
|
|
|
|
|
2015-07-19 08:20:35 +00:00
|
|
|
unsigned bhyveDriverGetCaps(virConnectPtr conn);
|
|
|
|
|
2014-11-08 16:48:35 +00:00
|
|
|
unsigned bhyveDriverGetGrubCaps(virConnectPtr conn);
|
|
|
|
|
2016-02-05 21:36:42 +00:00
|
|
|
virCapsPtr bhyveDriverGetCapabilities(bhyveConnPtr driver);
|
|
|
|
|
2014-02-18 10:08:10 +00:00
|
|
|
#endif /* __BHYVE_DRIVER_H__ */
|