From 57f2915b8ba91004925aa1e8a6b29b441663a07c Mon Sep 17 00:00:00 2001 From: danieldg Date: Wed, 3 Feb 2010 21:42:54 +0000 Subject: [PATCH] Forge FIDENT reply to CHGIDENT to prevent ident desync with 1.2 and 2.0 servers git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12365 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_spanningtree/compat.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/modules/m_spanningtree/compat.cpp b/src/modules/m_spanningtree/compat.cpp index d39d8e876..73b7ccb62 100644 --- a/src/modules/m_spanningtree/compat.cpp +++ b/src/modules/m_spanningtree/compat.cpp @@ -164,6 +164,16 @@ void TreeSocket::WriteLine(std::string line) subcmd.c_str()); line.erase(a, c-a); } + if (subcmd == "CHGIDENT" && d != std::string::npos) + { + std::string::size_type e = line.find(' ', d + 1); + if (e == std::string::npos) + return; // not valid + std::string target = line.substr(d + 1, e - d - 1); + + ServerInstance->Logs->Log("m_spanningtree",DEBUG,"Forging acceptance of CHGIDENT from 1201-protocol server"); + recvq.insert(0, ":" + target + " FIDENT " + line.substr(e) + "\n"); + } } } } -- 2.39.2