diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-11-02 12:35:18 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-11-02 12:35:18 +0000 |
commit | 786093b7515e923921f65125ab5bf18f2279f923 (patch) | |
tree | abb6d9fe100b2fcb9d1543077a276ec291670243 /src/users.cpp | |
parent | bc6c0898c5d3899e0fbb2171b14c2e23f172d954 (diff) |
xline gutting, once more. There is no longer an active_lines vector, and no requirement for sorting. Expiry will be cheked on a per-line basis for each positive hit on that line,
saving on cpu time.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8457 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/users.cpp')
-rw-r--r-- | src/users.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/users.cpp b/src/users.cpp index 5f61ce1df..0f451d2a9 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -830,10 +830,10 @@ void User::AddClient(InspIRCd* Instance, int socket, int port, bool iscached, in } #endif - New->exempt = (Instance->XLines->matches_exception(New) != NULL); + New->exempt = (Instance->XLines->MatchesLine('E',New) != NULL); if (!New->exempt) { - ZLine* r = Instance->XLines->matches_zline(New); + XLine* r = Instance->XLines->MatchesLine('Z',New); if (r) { @@ -942,7 +942,7 @@ void User::FullConnect() if (!this->exempt) { - GLine* r = ServerInstance->XLines->matches_gline(this); + XLine* r = ServerInstance->XLines->MatchesLine('G',this); if (r) { @@ -955,7 +955,7 @@ void User::FullConnect() return; } - KLine* n = ServerInstance->XLines->matches_kline(this); + XLine* n = ServerInstance->XLines->MatchesLine('K',this); if (n) { @@ -1065,7 +1065,7 @@ bool User::ForceNickChange(const char* newnick) return false; } - if (ServerInstance->XLines->matches_qline(newnick)) + if (ServerInstance->XLines->MatchesLine('Q',newnick)) { ServerInstance->stats->statsCollisions++; return false; |