X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Finspsocket.cpp;h=a46dffec8323f8f63272643c244d361ba72932c8;hb=48045988a48a738a1ffa183fdc1e335a431312a8;hp=391d7fe82d4367b161a685a661a0ea76214ded98;hpb=349b6b91931f3e5ab03bf5ea085d1928c306afe2;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/inspsocket.cpp b/src/inspsocket.cpp index 391d7fe82..a46dffec8 100644 --- a/src/inspsocket.cpp +++ b/src/inspsocket.cpp @@ -3,7 +3,7 @@ * +------------------------------------+ * * InspIRCd: (C) 2002-2009 InspIRCd Development Team - * See: http://www.inspircd.org/wiki/index.php/Credits + * See: http://wiki.inspircd.org/Credits * * This program is free but copyrighted software; see * the file COPYING for details. @@ -170,15 +170,15 @@ bool BufferedSocket::BindAddr(const std::string &ip_to_bind) { ConfigReader Conf(this->ServerInstance); bool v6 = false; -#ifdef IPV6 - /* Are we looking for a binding to fit an ipv6 host? */ - if ((ip_to_bind.empty()) || (ip_to_bind.find(':') != std::string::npos)) - v6 = true; -#endif // Case one: If they provided an IP, try bind it if (!ip_to_bind.empty()) { +#ifdef IPV6 + // Check whether or not they are binding to an IPv6 IP.. + if (ip_to_bind.find(':') != std::string::npos) + v6 = true; +#endif // And if it fails, don't do anything. return this->DoBindMagic(ip_to_bind, v6); } @@ -192,6 +192,14 @@ bool BufferedSocket::BindAddr(const std::string &ip_to_bind) // set current IP to the tag std::string current_ip = Conf.ReadValue("bind","address",j); +#ifdef IPV6 + // Check whether this is for an ipv6 address + if (current_ip.find(':') != std::string::npos) + v6 = true; + else + v6 = false; +#endif + // Make sure IP is nothing local if (current_ip == "*" || current_ip == "127.0.0.1" || current_ip.empty() || current_ip == "::1") continue;