summaryrefslogtreecommitdiff
path: root/src/inspircd.cpp
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-04-14 12:09:53 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2005-04-14 12:09:53 +0000
commit9a3475ed584b09c221219b306611c0b691161a08 (patch)
tree2525e19a856b31c01dc2d6b2226a6a336c52e621 /src/inspircd.cpp
parentb6b58df62aa2fea0b286b69971140cdec17afa61 (diff)
Added OnPreCommand
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1080 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r--src/inspircd.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp
index 7b0babd91..273259019 100644
--- a/src/inspircd.cpp
+++ b/src/inspircd.cpp
@@ -3020,6 +3020,7 @@ void process_command(userrec *user, char* cmd)
log(DEBUG,"process_command: handler: %s %s %d",user->nick,command,items);
if (cmdlist[i].handler_function)
{
+
/* ikky /stats counters */
if (temp)
{
@@ -3034,6 +3035,12 @@ void process_command(userrec *user, char* cmd)
cmdlist[i].total_bytes+=strlen(temp);
}
+ int MOD_RESULT = 0;
+ FOREACH_RESULT(OnPreCommand(command,command_p,items,user));
+ if (MOD_RESULT == 1) {
+ return;
+ }
+
/* WARNING: nothing may come after the
* command handler call, as the handler
* may free the user structure! */