summaryrefslogtreecommitdiff
path: root/include/inspircd.h
diff options
context:
space:
mode:
authorRobin Burchell <viroteck@viroteck.net>2012-05-28 04:23:29 -0700
committerRobin Burchell <viroteck@viroteck.net>2012-05-28 04:23:29 -0700
commit20a91b6bc458a9f5c531a93dbe6b8d5083a3fd0d (patch)
tree301df4396157da0479864bf08f1ec6d48f222b55 /include/inspircd.h
parenta441c1b1be087a9974dad211aa3706e1909d6ab3 (diff)
parente3e7cb89e112bbeed2b3e43798a16fe557a3992a (diff)
Merge pull request #150 from attilamolnar/insp20+incrementuidfix
[2.0] Fix generating invalid UIDs after current_uid is 000Z99999
Diffstat (limited to 'include/inspircd.h')
-rw-r--r--include/inspircd.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/inspircd.h b/include/inspircd.h
index cabb24aa0..9c9609530 100644
--- a/include/inspircd.h
+++ b/include/inspircd.h
@@ -256,6 +256,8 @@ DEFINE_HANDLER1(IsSIDHandler, bool, const std::string&);
DEFINE_HANDLER1(RehashHandler, void, const std::string&);
DEFINE_HANDLER3(OnCheckExemptionHandler, ModResult, User*, Channel*, const std::string&);
+class TestSuite;
+
/** The main class of the irc server.
* This class contains instances of all the other classes in this software.
* Amongst other things, it contains a ModeParser, a DNS object, a CommandParser
@@ -855,6 +857,8 @@ class CoreExport InspIRCd
{
return this->ReadBuffer;
}
+
+ friend class TestSuite;
};
ENTRYPOINT;