2008-10-10 13:57:13 +00:00
|
|
|
/*
|
2014-03-07 13:38:51 +00:00
|
|
|
* bridge_driver.h: core driver methods for managing networks
|
2008-10-10 13:57:13 +00:00
|
|
|
*
|
2016-04-01 13:45:51 +00:00
|
|
|
* Copyright (C) 2006-2016 Red Hat, Inc.
|
2008-10-10 13:57:13 +00:00
|
|
|
* Copyright (C) 2006 Daniel P. Berrange
|
|
|
|
*
|
|
|
|
* 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
|
2012-09-20 22:30:55 +00:00
|
|
|
* License along with this library. If not, see
|
2012-07-21 10:06:23 +00:00
|
|
|
* <http://www.gnu.org/licenses/>.
|
2008-10-10 13:57:13 +00:00
|
|
|
*/
|
|
|
|
|
2018-12-13 14:53:50 +00:00
|
|
|
#ifndef LIBVIRT_BRIDGE_DRIVER_H
|
|
|
|
# define LIBVIRT_BRIDGE_DRIVER_H
|
2008-10-10 13:57:13 +00:00
|
|
|
|
2010-03-09 18:22:22 +00:00
|
|
|
# include "internal.h"
|
2011-07-04 06:27:12 +00:00
|
|
|
# include "domain_conf.h"
|
2012-12-12 16:27:01 +00:00
|
|
|
# include "vircommand.h"
|
2012-12-12 16:43:54 +00:00
|
|
|
# include "virdnsmasq.h"
|
2017-03-08 15:25:24 +00:00
|
|
|
# include "virnetworkobj.h"
|
2008-10-10 13:57:13 +00:00
|
|
|
|
2017-07-26 10:39:19 +00:00
|
|
|
int
|
|
|
|
networkRegister(void);
|
2011-07-04 06:27:12 +00:00
|
|
|
|
2017-07-26 10:39:19 +00:00
|
|
|
int
|
2017-05-09 19:18:31 +00:00
|
|
|
networkDnsmasqConfContents(virNetworkObjPtr obj,
|
2017-07-26 10:39:19 +00:00
|
|
|
const char *pidfile,
|
|
|
|
char **configstr,
|
|
|
|
dnsmasqContext *dctx,
|
|
|
|
dnsmasqCapsPtr caps);
|
2015-07-31 15:02:10 +00:00
|
|
|
|
2018-12-13 14:53:50 +00:00
|
|
|
#endif /* LIBVIRT_BRIDGE_DRIVER_H */
|