iface: move private struct xt_iface_flag_pairs to .c file

This commit is contained in:
Jan Engelhardt
2009-04-27 20:46:09 +02:00
parent f5ed98fbf5
commit e89c5d976a
2 changed files with 5 additions and 5 deletions

View File

@@ -12,6 +12,11 @@
#include <linux/netfilter/x_tables.h>
#include "xt_iface.h"
struct xt_iface_flag_pairs {
uint16_t iface_flag;
uint32_t iff_flag;
};
MODULE_AUTHOR("Gáspár Lajos <gaspar.lajos@glsys.eu>");
MODULE_DESCRIPTION("Xtables: iface match module");
MODULE_LICENSE("GPL");

View File

@@ -16,11 +16,6 @@ enum {
XT_IFACE_IFACE = 1 << 15,
};
struct xt_iface_flag_pairs {
u_int16_t iface_flag;
u_int32_t iff_flag;
};
struct xt_iface_mtinfo {
char ifname[IFNAMSIZ];
u_int16_t flags;