bridge_driver.h 2.3 KB
Newer Older
1 2 3
/*
 * network_driver.h: core driver methods for managing networks
 *
4
 * Copyright (C) 2006, 2007, 2011 Red Hat, Inc.
5 6 7 8 9 10 11 12 13 14 15 16 17
 * 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
18
 * License along with this library.  If not, see
O
Osier Yang 已提交
19
 * <http://www.gnu.org/licenses/>.
20 21 22 23 24 25
 *
 * Author: Daniel P. Berrange <berrange@redhat.com>
 */


#ifndef __VIR_NETWORK__DRIVER_H
26
# define __VIR_NETWORK__DRIVER_H
27

28
# include <config.h>
29

30
# include "internal.h"
31
# include "network_conf.h"
32
# include "domain_conf.h"
33
# include "command.h"
34
# include "dnsmasq.h"
35 36

int networkRegister(void);
37 38 39 40 41 42 43 44 45

# if WITH_NETWORK
int networkAllocateActualDevice(virDomainNetDefPtr iface)
    ATTRIBUTE_NONNULL(1);
int networkNotifyActualDevice(virDomainNetDefPtr iface)
    ATTRIBUTE_NONNULL(1);
int networkReleaseActualDevice(virDomainNetDefPtr iface)
    ATTRIBUTE_NONNULL(1);

46 47 48
int networkGetNetworkAddress(const char *netname, char **netaddr)
    ATTRIBUTE_NONNULL(1) ATTRIBUTE_NONNULL(2);

49 50
int networkBuildDhcpDaemonCommandLine(virNetworkObjPtr network,
                                      virCommandPtr *cmdout, char *pidfile,
51 52 53 54 55
                                      dnsmasqContext *dctx)
    ;
# else
/* Define no-op replacements that don't drag in any link dependencies.  */
#  define networkAllocateActualDevice(iface) 0
J
Ján Tomko 已提交
56 57
#  define networkNotifyActualDevice(iface) (iface=iface, 0)
#  define networkReleaseActualDevice(iface) (iface=iface, 0)
O
Osier Yang 已提交
58
#  define networkGetNetworkAddress(netname, netaddr) (-2)
59 60
#  define networkBuildDhcpDaemonCommandLine(network, cmdout, pidfile, dctx) 0
# endif
61

62 63 64 65 66
typedef char *(*networkDnsmasqLeaseFileNameFunc)(const char *netname);

/* this allows the testsuite to replace the lease filename resolver function */
extern networkDnsmasqLeaseFileNameFunc networkDnsmasqLeaseFileName;

67
#endif /* __VIR_NETWORK__DRIVER_H */