From 62af4a3798995b0368625c0322bc9d5373bb0348 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 12 May 2011 12:26:18 +0200 Subject: s4-ipv6: allow IPv6 addresses in our interfaces list --- source4/lib/socket/interface.c | 5 ----- 1 file changed, 5 deletions(-) (limited to 'source4/lib/socket') diff --git a/source4/lib/socket/interface.c b/source4/lib/socket/interface.c index 83d8e4c129..9ae658da3e 100644 --- a/source4/lib/socket/interface.c +++ b/source4/lib/socket/interface.c @@ -92,11 +92,6 @@ static void add_interface(TALLOC_CTX *mem_ctx, const struct iface_struct *ifs, s return; } - if (ifs->ip.ss_family != AF_INET) { - DEBUG(5, ("not adding IPv6 interface %s\n", ifs->name)); - return; - } - iface = talloc(*interfaces == NULL ? mem_ctx : *interfaces, struct interface); if (iface == NULL) return; -- cgit