mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-09 18:49:03 -04:00
ident: rename nolookupprefix to prefixunqueried.
This commit is contained in:
parent
965c55881b
commit
09da1499d7
@ -1063,12 +1063,12 @@
|
||||
# the timeout for ident lookups here. If not defined, it will default #
|
||||
# to 5 seconds. This is a non-blocking timeout which holds the user #
|
||||
# in a 'connecting' state until the lookup is complete. #
|
||||
# nolookupprefix: If on, the idents of users being in a connect class #
|
||||
# prefixunqueried: If on, the idents of users being in a connect class#
|
||||
# with ident lookups disabled (i.e. <connect useident="off">) will be #
|
||||
# prefixed with a "~". If off, the ident of those users will not be #
|
||||
# prefixed. Default is off. #
|
||||
#
|
||||
#<ident timeout="5" nolookupprefix="no">
|
||||
#<ident timeout="5" prefixunqueried="no">
|
||||
|
||||
#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#-#
|
||||
# Invite exception module: Adds support for channel invite exceptions
|
||||
|
@ -256,7 +256,7 @@ class ModuleIdent : public Module
|
||||
{
|
||||
private:
|
||||
unsigned int timeout;
|
||||
bool NoLookupPrefix;
|
||||
bool prefixunqueried;
|
||||
SimpleExtItem<IdentRequestSocket, stdalgo::culldeleter> ext;
|
||||
|
||||
static void PrefixIdent(LocalUser* user)
|
||||
@ -292,7 +292,7 @@ class ModuleIdent : public Module
|
||||
{
|
||||
ConfigTag* tag = ServerInstance->Config->ConfValue("ident");
|
||||
timeout = tag->getDuration("timeout", 5, 1, 60);
|
||||
NoLookupPrefix = tag->getBool("nolookupprefix", false);
|
||||
prefixunqueried = tag->getBool("prefixunqueried");
|
||||
}
|
||||
|
||||
void OnSetUserIP(LocalUser* user) CXX11_OVERRIDE
|
||||
@ -340,7 +340,7 @@ class ModuleIdent : public Module
|
||||
IdentRequestSocket *isock = ext.get(user);
|
||||
if (!isock)
|
||||
{
|
||||
if (NoLookupPrefix)
|
||||
if (prefixunqueried)
|
||||
PrefixIdent(user);
|
||||
return MOD_RES_PASSTHRU;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user