diff options
author | Brad Fisher <brad@info-link.net> | 2004-09-20 08:52:19 +0000 |
---|---|---|
committer | Patrick McHardy <kaber@trash.net> | 2004-09-20 08:52:19 +0000 |
commit | 514b1b488eaf07d66e209681f4f34246d7db2f60 (patch) | |
tree | 32a279862120585751e142a7b42bddce5fc783ea /include/linux | |
parent | 0371c0c5eb17c81e8dd44c4aa31b58318e9b7b72 (diff) |
Add comment match extension (Brad Fisher)
Diffstat (limited to 'include/linux')
-rw-r--r-- | include/linux/netfilter_ipv4/ipt_comment.h | 10 |
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 */ |