netfilter-devel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2 nf] netfilter: nft_queue: restrict queueing to supported families
@ 2015-06-26  8:01 Pablo Neira Ayuso
  2015-06-26  8:01 ` [PATCH 2/2 nf] netfilter: nfnetlink: keep going batch handling on missing modules Pablo Neira Ayuso
  2015-06-26  8:02 ` [PATCH 1/2 nf] netfilter: nft_queue: restrict queueing to supported families Patrick McHardy
  0 siblings, 2 replies; 4+ messages in thread
From: Pablo Neira Ayuso @ 2015-06-26  8:01 UTC (permalink / raw)
  To: netfilter-devel; +Cc: kaber

We only support IPv4 and IPv6 at this moment.

Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
---
 net/netfilter/nft_queue.c |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/net/netfilter/nft_queue.c b/net/netfilter/nft_queue.c
index 96805d2..45b9f7f 100644
--- a/net/netfilter/nft_queue.c
+++ b/net/netfilter/nft_queue.c
@@ -129,4 +129,5 @@ module_exit(nft_queue_module_exit);
 
 MODULE_LICENSE("GPL");
 MODULE_AUTHOR("Eric Leblond <eric@regit.org>");
-MODULE_ALIAS_NFT_EXPR("queue");
+MODULE_ALIAS_NFT_AF_EXPR(AF_INET, "queue");
+MODULE_ALIAS_NFT_AF_EXPR(AF_INET6, "queue");
-- 
1.7.10.4


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2015-06-26  8:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-26  8:01 [PATCH 1/2 nf] netfilter: nft_queue: restrict queueing to supported families Pablo Neira Ayuso
2015-06-26  8:01 ` [PATCH 2/2 nf] netfilter: nfnetlink: keep going batch handling on missing modules Pablo Neira Ayuso
2015-06-26  8:02 ` [PATCH 1/2 nf] netfilter: nft_queue: restrict queueing to supported families Patrick McHardy
2015-06-26  8:36   ` Pablo Neira Ayuso

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).