diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-07-26 18:44:13 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-07-26 18:44:13 +0000 |
commit | 7ea099f8d1274e709a8a201a4a0e446135fbb5c5 (patch) | |
tree | 553b089a6623d5bd9c0bc18463b32aff4ea341db /src/inspircd.cpp | |
parent | a3008ff654be3dc7a798704bd32666f6ebf2a8c9 (diff) |
Add extra detail to m_cloaking on failure to load
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7580 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r-- | src/inspircd.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 0de94a316..35036afe9 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -382,17 +382,23 @@ void InspIRCd::WritePID(const std::string &filename) InspIRCd::InspIRCd(int argc, char** argv) : ModCount(0), GlobalCulls(this), + + /* Functor initialisation. Note that the ordering here is very important. */ HandleProcessUser(this), HandleIsNick(this), HandleIsIdent(this), HandleFindDescriptor(this), HandleFloodQuitUser(this), + + /* Functor pointer initialisation. Must match the order of the list above */ ProcessUser(&HandleProcessUser), IsNick(&HandleIsNick), IsIdent(&HandleIsIdent), FindDescriptor(&HandleFindDescriptor), FloodQuitUser(&HandleFloodQuitUser) + { + int found_ports = 0; FailedPortList pl; int do_version = 0, do_nofork = 0, do_debug = 0, do_nolog = 0, do_root = 0; /* flag variables */ |