diff options
author | Bernie Harris <bernie.harris@alliedtelesis.co.nz> | 2018-03-21 15:42:16 +1300 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2018-03-30 11:04:12 +0200 |
commit | 1be3ac98444066a292de02c2c12e203bdf575e7d (patch) | |
tree | 8fde2b77ded791a2d00c2e3dc2a993a03b015e23 | |
parent | 39c202d228c3da5a5531be847e9b06cc9b787f31 (diff) | |
download | linux-1be3ac98444066a292de02c2c12e203bdf575e7d.tar.gz linux-1be3ac98444066a292de02c2c12e203bdf575e7d.tar.bz2 linux-1be3ac98444066a292de02c2c12e203bdf575e7d.zip |
netfilter: ebtables: Add string filter
This patch is part of a proposal to add a string filter to
ebtables, which would be similar to the string filter in
iptables. Like iptables, the ebtables filter uses the xt_string
module.
Signed-off-by: Bernie Harris <bernie.harris@alliedtelesis.co.nz>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
-rw-r--r-- | net/netfilter/xt_string.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/netfilter/xt_string.c b/net/netfilter/xt_string.c index 423293ee57c2..be1feddadcf0 100644 --- a/net/netfilter/xt_string.c +++ b/net/netfilter/xt_string.c @@ -21,6 +21,7 @@ MODULE_DESCRIPTION("Xtables: string-based matching"); MODULE_LICENSE("GPL"); MODULE_ALIAS("ipt_string"); MODULE_ALIAS("ip6t_string"); +MODULE_ALIAS("ebt_string"); static bool string_mt(const struct sk_buff *skb, struct xt_action_param *par) |