summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2009-04-30 13:35:25 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2009-04-30 13:35:25 +0000
commit0e5f5ce8db8d34afe2869a73bc38672e587948a4 (patch)
tree314c88e6529b40d6cf3c0df262e8452925c3d77a /src
parent292291100c8f27e79f6829cbe9c74300f1604f0b (diff)
Fix bug found by Jeremy from Teranova, thanks: if an explicit bind to an IP is not made, don't assume all <bind> tags are for ipv6 IPs on an IPv6 compile (WTF).
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11342 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r--src/inspsocket.cpp18
1 files changed, 13 insertions, 5 deletions
diff --git a/src/inspsocket.cpp b/src/inspsocket.cpp
index aa3c96da5..a46dffec8 100644
--- a/src/inspsocket.cpp
+++ b/src/inspsocket.cpp
@@ -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 <bind> tag
std::string current_ip = Conf.ReadValue("bind","address",j);
+#ifdef IPV6
+ // Check whether this <bind> 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;