From: Bernie Harris Date: Wed, 21 Mar 2018 02:42:16 +0000 (+1300) Subject: netfilter: ebtables: Add string filter X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=1be3ac98444066a292de02c2c12e203bdf575e7d;p=linux.git 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 Signed-off-by: Pablo Neira Ayuso --- diff --git a/net/netfilter/xt_string.c b/net/netfilter/xt_string.c index 423293ee57c22..be1feddadcf07 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)