mirror of
https://github.com/inspircd/inspircd.git
synced 2025-04-03 14:50:04 -04:00
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
This commit is contained in:
parent
a3008ff654
commit
7ea099f8d1
@ -382,17 +382,23 @@ void InspIRCd::WritePID(const std::string &filename)
|
|||||||
InspIRCd::InspIRCd(int argc, char** argv)
|
InspIRCd::InspIRCd(int argc, char** argv)
|
||||||
: ModCount(0),
|
: ModCount(0),
|
||||||
GlobalCulls(this),
|
GlobalCulls(this),
|
||||||
|
|
||||||
|
/* Functor initialisation. Note that the ordering here is very important. */
|
||||||
HandleProcessUser(this),
|
HandleProcessUser(this),
|
||||||
HandleIsNick(this),
|
HandleIsNick(this),
|
||||||
HandleIsIdent(this),
|
HandleIsIdent(this),
|
||||||
HandleFindDescriptor(this),
|
HandleFindDescriptor(this),
|
||||||
HandleFloodQuitUser(this),
|
HandleFloodQuitUser(this),
|
||||||
|
|
||||||
|
/* Functor pointer initialisation. Must match the order of the list above */
|
||||||
ProcessUser(&HandleProcessUser),
|
ProcessUser(&HandleProcessUser),
|
||||||
IsNick(&HandleIsNick),
|
IsNick(&HandleIsNick),
|
||||||
IsIdent(&HandleIsIdent),
|
IsIdent(&HandleIsIdent),
|
||||||
FindDescriptor(&HandleFindDescriptor),
|
FindDescriptor(&HandleFindDescriptor),
|
||||||
FloodQuitUser(&HandleFloodQuitUser)
|
FloodQuitUser(&HandleFloodQuitUser)
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
||||||
int found_ports = 0;
|
int found_ports = 0;
|
||||||
FailedPortList pl;
|
FailedPortList pl;
|
||||||
int do_version = 0, do_nofork = 0, do_debug = 0, do_nolog = 0, do_root = 0; /* flag variables */
|
int do_version = 0, do_nofork = 0, do_debug = 0, do_nolog = 0, do_root = 0; /* flag variables */
|
||||||
|
@ -254,7 +254,19 @@ class CloakUser : public ModeHandler
|
|||||||
prefix = ServerInstance->Config->Network;
|
prefix = ServerInstance->Config->Network;
|
||||||
|
|
||||||
if (!key1 || !key2 || !key3 || !key4)
|
if (!key1 || !key2 || !key3 || !key4)
|
||||||
throw ModuleException("You have not defined cloak keys for m_cloaking!!! THIS IS INSECURE AND SHOULD BE CHECKED!");
|
{
|
||||||
|
std::string detail;
|
||||||
|
if (!key1)
|
||||||
|
detail = "<cloak:key1> is not valid, it may be set to a too high/low value, or it may not exist.";
|
||||||
|
else if (!key2)
|
||||||
|
detail = "<cloak:key2> is not valid, it may be set to a too high/low value, or it may not exist.";
|
||||||
|
else if (!key3)
|
||||||
|
detail = "<cloak:key3> is not valid, it may be set to a too high/low value, or it may not exist.";
|
||||||
|
else if (!key4)
|
||||||
|
detail = "<cloak:key4> is not valid, it may be set to a too high/low value, or it may not exist.";
|
||||||
|
|
||||||
|
throw ModuleException("You have not defined cloak keys for m_cloaking!!! THIS IS INSECURE AND SHOULD BE CHECKED! - " + detail);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user