summaryrefslogtreecommitdiffstats
path: root/include/linux/netfilter_ipv4
diff options
context:
space:
mode:
authorBrad Fisher <brad@info-link.net>2004-09-20 08:52:19 +0000
committerPatrick McHardy <kaber@trash.net>2004-09-20 08:52:19 +0000
commit514b1b488eaf07d66e209681f4f34246d7db2f60 (patch)
tree32a279862120585751e142a7b42bddce5fc783ea /include/linux/netfilter_ipv4
parent0371c0c5eb17c81e8dd44c4aa31b58318e9b7b72 (diff)
Add comment match extension (Brad Fisher)
Diffstat (limited to 'include/linux/netfilter_ipv4')
-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 00000000..85c1123c
--- /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 */