add chaos_calmer branch
[15.05/openwrt.git] / package / network / services / ead / src / libbridge.h
1 /*
2  * Copyright (C) 2000 Lennert Buytenhek
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17  */
18
19 #ifndef _LIBBRIDGE_H
20 #define _LIBBRIDGE_H
21
22 #ifdef linux
23
24 int br_init(void);
25 void br_shutdown(void);
26
27 int br_foreach_port(const char *brname,
28                     int (*iterator)(const char *br, const char *port, void *arg),
29                     void *arg);
30
31 int br_foreach_bridge(int (*iterator)(const char *, void *), void *arg);
32
33 #else
34
35 static inline int br_init(void)
36 {
37         return 0;
38 }
39
40 static inline void br_shutdown(void)
41 {
42 }
43
44 static inline int
45 br_foreach_port(const char *brname,
46                     int (*iterator)(const char *br, const char *port, void *arg),
47                     void *arg)
48 {
49         return 0;
50 }
51
52 static inline int
53 br_foreach_bridge(int (*iterator)(const char *, void *), void *arg)
54 {
55         return 0;
56 }
57
58 #endif
59
60 #endif