summaryrefslogtreecommitdiff
path: root/include/inspircd.h
diff options
context:
space:
mode:
authorw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2007-08-28 13:23:47 +0000
committerw00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7>2007-08-28 13:23:47 +0000
commitd5d692037ea79c2aea6ff61e81c34ae990ce12d4 (patch)
treecda5df58fef97c54bd7ab69f925109a99004a6b8 /include/inspircd.h
parent5ee7322040d501fe55853453caa230f4550313c3 (diff)
Oops. This is supposed to be a public member
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7939 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/inspircd.h')
-rw-r--r--include/inspircd.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/inspircd.h b/include/inspircd.h
index 6d5f35eb2..dbbc0375e 100644
--- a/include/inspircd.h
+++ b/include/inspircd.h
@@ -342,10 +342,6 @@ class CoreExport InspIRCd : public classbase
*/
interfacelist Interfaces;
- /** Globally accessible fake user record. This is used to force mode changes etc across s2s, etc.. bit ugly, but.. better than how this was done in 1.1
- */
- userrec *FakeClient;
-
/** The current time, updated in the mainloop
*/
time_t TIME;
@@ -399,6 +395,10 @@ class CoreExport InspIRCd : public classbase
*/
std::map<InspSocket*,InspSocket*> SocketCull;
+ /** Globally accessible fake user record. This is used to force mode changes etc across s2s, etc.. bit ugly, but.. better than how this was done in 1.1
+ */
+ userrec *FakeClient;
+
/** Returns the next available UID for this server.
*/
std::string GetUID();