diff options
| author | 2010-01-18 17:35:55 +0000 | |
|---|---|---|
| committer | 2010-01-18 17:35:55 +0000 | |
| commit | 9ee588b23fd915255d2cea0c537e6938297dbe5b (patch) | |
| tree | 4148f2f9b48a557fd7464b2b0d54887f62cd6bf3 /include/command_parse.h | |
| parent | Fix iteration of oper blocks by SSLINFO (diff) | |
PreCommand/PostCommand are local-only hooks
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12291 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/command_parse.h')
| -rw-r--r-- | include/command_parse.h | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/include/command_parse.h b/include/command_parse.h index 2b03ec9bd..bd778c3d2 100644 --- a/include/command_parse.h +++ b/include/command_parse.h @@ -41,7 +41,7 @@ class CoreExport CommandParser * @param user The user to parse the command for * @param cmd The command string to process */ - bool ProcessCommand(User *user, std::string &cmd); + bool ProcessCommand(LocalUser *user, std::string &cmd); @@ -111,13 +111,7 @@ class CoreExport CommandParser * @param buffer The buffer line to process * @param user The user to whom this line belongs */ - bool ProcessBuffer(std::string &buffer,User *user); - - /** Process lines in a users sendq. - * @param current The user to process - * @param one_only if one_only is set only one command is processed from the sendq. - */ - void DoLines(User* current, bool one_only = false); + bool ProcessBuffer(std::string &buffer,LocalUser *user); /** Add a new command to the commands hash * @param f The new Command to add to the list |
