blob: d7bbdc416257fc33a8e118eb940c1905ba4d9647 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001/*
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
24int br_init(void);
25void br_shutdown(void);
26
27int br_foreach_port(const char *brname,
28 int (*iterator)(const char *br, const char *port, void *arg),
29 void *arg);
30
31int br_foreach_bridge(int (*iterator)(const char *, void *), void *arg);
32
33#else
34
35static inline int br_init(void)
36{
37 return 0;
38}
39
40static inline void br_shutdown(void)
41{
42}
43
44static inline int
45br_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
52static inline int
53br_foreach_bridge(int (*iterator)(const char *, void *), void *arg)
54{
55 return 0;
56}
57
58#endif
59
60#endif