summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorkaber <kaber>2004-09-20 08:52:19 +0000
committerkaber <kaber>2004-09-20 08:52:19 +0000
commit4789fa36300b7253d09aea7150c8870556cb1639 (patch)
tree32a279862120585751e142a7b42bddce5fc783ea /include
parent31622c7dc75c79faad42f6501f6a38fe8c9cd34e (diff)
Add comment match extension (Brad Fisher)
Diffstat (limited to 'include')
-rw-r--r--include/linux/netfilter_ipv4/ipt_comment.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/linux/netfilter_ipv4/ipt_comment.h b/include/linux/netfilter_ipv4/ipt_comment.h
new file mode 100644
index 0000000..85c1123
--- /dev/null
+++ b/include/linux/netfilter_ipv4/ipt_comment.h
@@ -0,0 +1,10 @@
+#ifndef _IPT_COMMENT_H
+#define _IPT_COMMENT_H
+
+#define IPT_MAX_COMMENT_LEN 256
+
+struct ipt_comment_info {
+ unsigned char comment[IPT_MAX_COMMENT_LEN];
+};
+
+#endif /* _IPT_COMMENT_H */