include missing xt_layer7.h in 602-netfilter_layer7_2.21.patch

SVN-Revision: 15546
owl
Jo-Philipp Wich 2009-05-01 21:29:52 +00:00
parent 540556bb92
commit 741e58843a
1 changed files with 17 additions and 0 deletions

View File

@ -2043,3 +2043,20 @@
+ }
+ *dst++ = '\0';
+}
--- /dev/null
+++ b/include/linux/netfilter/xt_layer7.h
@@ -0,0 +1,14 @@
+#ifndef _XT_LAYER7_H
+#define _XT_LAYER7_H
+
+#define MAX_PATTERN_LEN 8192
+#define MAX_PROTOCOL_LEN 256
+
+struct xt_layer7_info {
+ char protocol[MAX_PROTOCOL_LEN];
+ char pattern[MAX_PATTERN_LEN];
+ u_int8_t invert;
+ u_int8_t pkt;
+};
+
+#endif /* _XT_LAYER7_H */