libvirt/src/qemu/qemu_security_stacked.h
Daniel P. Berrange 80fd73ca09 Introduce a stacked security driver impl for QEMU
* qemu/qemu_conf.h: Add securityPrimaryDriver and
  securitySecondaryDriver fields to 'struct qemud_driver'
* Makefile.am: Add new files
* qemu/qemu_security_stacked.c, qemu/qemu_security_stacked.h: A
  simple stacked security driver
2010-01-21 14:00:16 +00:00

23 lines
621 B
C

/*
* Copyright (C) 2010 Red Hat, 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.
*
* QEMU stacked security driver
*/
#include "security/security_driver.h"
#include "qemu_conf.h"
#ifndef __QEMU_SECURITY_STACKED
#define __QEMU_SECURITY_STACKED
extern virSecurityDriver qemuStackedSecurityDriver;
void qemuSecurityStackedSetDriver(struct qemud_driver *driver);
#endif /* __QEMU_SECURITY_DAC */