diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-02-24 17:45:21 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-02-24 17:45:21 +0000 |
commit | b119a88b55e7f5f3260ff21e78a5c9d1cf491cc8 (patch) | |
tree | f3daefd405dcd169a40033647038850e34cf8e17 /include/inspircd.h | |
parent | f7df5c69c4c54ebac32b1f3af3381495bef2cbd5 (diff) |
Allow for 'bail' and 'user' parameters to rehash thread
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9022 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/inspircd.h')
-rw-r--r-- | include/inspircd.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/inspircd.h b/include/inspircd.h index a933e5c41..1a2c78c7a 100644 --- a/include/inspircd.h +++ b/include/inspircd.h @@ -235,8 +235,10 @@ class BanCacheManager; class ConfigReaderThread : public Thread { InspIRCd* ServerInstance; + bool do_bail; + User* TheUser; public: - ConfigReaderThread(InspIRCd* Instance) : Thread(), ServerInstance(Instance) + ConfigReaderThread(InspIRCd* Instance, bool bail, User* user) : Thread(), ServerInstance(Instance), do_bail(bail), TheUser(user) { } |