aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--networking/brctl.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/networking/brctl.c b/networking/brctl.c
index 69e3c869c..1b5268947 100644
--- a/networking/brctl.c
+++ b/networking/brctl.c
@@ -16,6 +16,20 @@
16#include <linux/sockios.h> 16#include <linux/sockios.h>
17#include <net/if.h> 17#include <net/if.h>
18 18
19#ifndef SIOCBRADDBR
20# define SIOCBRADDBR BRCTL_ADD_BRIDGE
21#endif
22#ifndef SIOCBRDELBR
23# define SIOCBRDELBR BRCTL_DEL_BRIDGE
24#endif
25#ifndef SIOCBRADDIF
26# define SIOCBRADDIF BRCTL_ADD_IF
27#endif
28#ifndef SIOCBRDELIF
29# define SIOCBRDELIF BRCTL_DEL_IF
30#endif
31
32
19/* Maximum number of ports supported per bridge interface. */ 33/* Maximum number of ports supported per bridge interface. */
20#ifndef MAX_PORTS 34#ifndef MAX_PORTS
21#define MAX_PORTS 32 35#define MAX_PORTS 32