diff options
| author | 2006-02-03 14:41:19 +0000 | |
|---|---|---|
| committer | 2006-02-03 14:41:19 +0000 | |
| commit | 9b4c7f385f0175f27e8d33de87827b65d89f5318 (patch) | |
| tree | fe838e3f58986dea69814442de646a0ff390e7a2 /src/dnsqueue.cpp | |
| parent | Why are we using the users hostname to connect back to port 113? we can use i... (diff) | |
Added extra 'looking up your hostname lollerskates' output :p
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@3044 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/dnsqueue.cpp')
| -rw-r--r-- | src/dnsqueue.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dnsqueue.cpp b/src/dnsqueue.cpp index 71f227567..36128f985 100644 --- a/src/dnsqueue.cpp +++ b/src/dnsqueue.cpp @@ -137,6 +137,7 @@ public: log(DEBUG,"Caching hostname %s -> %s",(char*)inet_ntoa(usr->ip4),hostname.c_str()); addrcache[usr->ip4] = new std::string(hostname); } + WriteServ(usr->fd,"NOTICE Auth :*** Found your hostname"); } usr->dns_done = true; return true; @@ -176,6 +177,7 @@ public: { if ((usr->registered > 3) || (hostname == "")) { + WriteServ(usr->fd,"NOTICE Auth :*** Could not resolve your hostname -- Using your IP address instead"); usr->dns_done = true; return true; } |
