bridge.h 3.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * Copyright (C) 2007 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.
 *
 * 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, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
 *
 * Authors:
 *     Mark McLoughlin <markmc@redhat.com>
 */

#ifndef __QEMUD_BRIDGE_H__
#define __QEMUD_BRIDGE_H__

25
#include <config.h>
26

27
#if defined(WITH_BRIDGE)
28

29 30 31
#include <net/if.h>
#include <netinet/in.h>

32 33 34 35
/**
 * BR_IFNAME_MAXLEN:
 * maximum size in byte of the name for an interface
 */
36
#define BR_IFNAME_MAXLEN    IF_NAMESIZE
37 38 39 40 41

/**
 * BR_INET_ADDR_MAXLEN:
 * maximum size in bytes for an inet addess name
 */
42 43 44 45 46 47 48 49
#define BR_INET_ADDR_MAXLEN INET_ADDRSTRLEN

typedef struct _brControl brControl;

int     brInit                  (brControl **ctl);
void    brShutdown              (brControl *ctl);

int     brAddBridge             (brControl *ctl,
50
                                 const char *name);
51 52
int     brDeleteBridge          (brControl *ctl,
                                 const char *name);
53 54
int     brHasBridge             (brControl *ctl,
                                 const char *name);
55 56 57 58 59 60 61 62 63 64

int     brAddInterface          (brControl *ctl,
                                 const char *bridge,
                                 const char *iface);
int     brDeleteInterface       (brControl *ctl,
                                 const char *bridge,
                                 const char *iface);

int     brAddTap                (brControl *ctl,
                                 const char *bridge,
65
                                 char **ifname,
66
                                 int vnet_hdr,
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
                                 int *tapfd);

int     brSetInterfaceUp        (brControl *ctl,
                                 const char *ifname,
                                 int up);
int     brGetInterfaceUp        (brControl *ctl,
                                 const char *ifname,
                                 int *up);

int     brSetInetAddress        (brControl *ctl,
                                 const char *ifname,
                                 const char *addr);
int     brGetInetAddress        (brControl *ctl,
                                 const char *ifname,
                                 char *addr,
                                 int maxlen);
int     brSetInetNetmask        (brControl *ctl,
                                 const char *ifname,
                                 const char *netmask);
int     brGetInetNetmask        (brControl *ctl,
                                 const char *ifname,
                                 char *netmask,
                                 int maxlen);

int     brSetForwardDelay       (brControl *ctl,
                                 const char *bridge,
                                 int delay);
int     brGetForwardDelay       (brControl *ctl,
                                 const char *bridge,
                                 int *delay);
int     brSetEnableSTP          (brControl *ctl,
                                 const char *bridge,
                                 int enable);
int     brGetEnableSTP          (brControl *ctl,
                                 const char *bridge,
                                 int *enable);

104
#endif /* WITH_BRIDGE */
105

106
#endif /* __QEMUD_BRIDGE_H__ */