From 49313a2b5a5d8ba76ecb1ab2ed9f3df94639f7bb Mon Sep 17 00:00:00 2001 From: Daniel De Graaf Date: Mon, 26 Apr 2010 14:50:54 -0500 Subject: Add debug output of UserResolver results --- src/user_resolver.cpp | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'src/user_resolver.cpp') diff --git a/src/user_resolver.cpp b/src/user_resolver.cpp index 156bb9828..ecd864a69 100644 --- a/src/user_resolver.cpp +++ b/src/user_resolver.cpp @@ -22,9 +22,17 @@ void UserResolver::OnLookupComplete(const std::string &result, unsigned int ttl, { UserResolver *res_forward; // for forward-resolution LocalUser* bound_user = (LocalUser*)ServerInstance->FindUUID(uuid); + if (!bound_user) + { + ServerInstance->Logs->Log("RESOLVER", DEBUG, "Resolution finished for user '%s' who is gone", uuid.c_str()); + return; + } + + ServerInstance->Logs->Log("RESOLVER", DEBUG, "DNS result for %s: '%s' -> '%s'", uuid.c_str(), input.c_str(), result.c_str()); - if ((!this->fwd) && bound_user) + if (!fwd) { + // first half of resolution is done. We now need to verify that the host matches. bound_user->stored_host = result; try { @@ -50,7 +58,7 @@ void UserResolver::OnLookupComplete(const std::string &result, unsigned int ttl, ServerInstance->Logs->Log("RESOLVER", DEBUG,"Error in resolver: %s",e.GetReason()); } } - else if ((this->fwd) && bound_user) + else { /* Both lookups completed */ -- cgit v1.2.3