From eab1834e64e843a2305ebfd93ea900208a24fca4 Mon Sep 17 00:00:00 2001 From: Kevin Easton Date: Sun, 27 Sep 2009 12:06:31 +0000 Subject: [PATCH] Add 0::1 to list of ipv6 addressed ignored as vhost candidates. git-svn-id: svn://svn.code.sf.net/p/bitchx/code/trunk@74 13b04d17-f746-0410-82c6-800466cd88b0 --- source/commands.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source/commands.c b/source/commands.c index 7eb0a37..1b5b896 100644 --- a/source/commands.c +++ b/source/commands.c @@ -2751,6 +2751,7 @@ void add_address(Virtuals **vhost_list, int norev, struct sockaddr *sa) if (!strcmp(result, "127.0.0.1") || !strcmp(result, "0.0.0.0") || !strcmp(result, "::1") || + !strcmp(result, "0::1") || !strcmp(result, "::") || !strcmp(result, "0::0") || !strncasecmp(result, "fe8", 3) ||