summaryrefslogtreecommitdiffstats
path: root/extensions/ebt_vlan.c
diff options
context:
space:
mode:
authorBart De Schuymer <bdschuym@pandora.be>2002-06-16 09:20:22 +0000
committerBart De Schuymer <bdschuym@pandora.be>2002-06-16 09:20:22 +0000
commite4b1fdf890d76d0b9ceca7c7ae62d326114cc089 (patch)
treebf39bd4cb629d37e23f5113c149b24494238b7ec /extensions/ebt_vlan.c
parentf71f5618993aa3ccaf55e735d77326410fa1efca (diff)
permute includes to get this to compile
Diffstat (limited to 'extensions/ebt_vlan.c')
-rw-r--r--extensions/ebt_vlan.c11
1 files changed, 5 insertions, 6 deletions
diff --git a/extensions/ebt_vlan.c b/extensions/ebt_vlan.c
index b905f44..2379f97 100644
--- a/extensions/ebt_vlan.c
+++ b/extensions/ebt_vlan.c
@@ -13,17 +13,16 @@
* License: GPL
*
*/
-
-#include <getopt.h>
-#include <netinet/in.h>
+
#include <stdio.h>
#include <stdlib.h>
-#include <string.h>
#include <sys/socket.h>
-
-#include <linux/netfilter_bridge/ebt_vlan.h>
+#include <netinet/in.h>
+#include <string.h>
#include <linux/netfilter_bridge/ebtables.h>
+#include <getopt.h>
#include "../include/ebtables_u.h"
+#include <linux/netfilter_bridge/ebt_vlan.h>
#define VLAN_ID '1'
#define VLAN_PRIO '2'