| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | Use CommandBase::Params instead of std::vector<std::string>. | 2018-07-26 | 1 | -11/+11 | ||
| | | | | | | This is presently a typedef but will soon be replaced with a class that encapsulates both tags and parameters. | |||||
| * | Fix a ton of -Wsign-conversion warnings. | 2017-11-17 | 1 | -1/+1 | ||
| | | ||||||
| * | Hide User#host and User#dhost and use accessors to modify them. | 2017-10-28 | 1 | -1/+1 | ||
| | | | | | | This removes the need to invalidate the cache after changing a user's hostname. | |||||
| * | Move RPL_SYNTAX to 650 to prevent a collision with RPL_TEXT. | 2017-09-06 | 1 | -1/+1 | ||
| | | | | | | Also move the command name to a parameter so that it is more easily parseable by software. | |||||
| * | Replace irc::string usage in CommandParser::LoopCall() with ↵ | 2016-08-22 | 1 | -2/+2 | ||
| | | | | | irc::insensitive_swo set | |||||
| * | Don't prepend ":<nick>" to raw input log | 2016-03-23 | 1 | -2/+1 | ||
| | | ||||||
| * | Convert WriteNumeric() calls to pass the parameters of the numeric as method ↵ | 2016-02-25 | 1 | -9/+9 | ||
| | | | | | parameters | |||||
| * | Implement Command::RegisterService() | 2015-11-23 | 1 | -0/+6 | ||
| | | ||||||
| * | Merge insp20 | 2015-04-20 | 1 | -1/+16 | ||
| |\ | ||||||
| | * | Fix numeric ERR_NOTREGISTERED not containing the user's nick | 2015-01-21 | 1 | -1/+1 | ||
| | | | ||||||
| | * | Always penalize clients executing a command which fails before running the ↵ | 2015-01-12 | 1 | -1/+16 | ||
| | | | | | | | | | handler, even if the command has 0 penalty | |||||
| * | | Move implementation of Command and CommandBase functions into a source file | 2015-01-24 | 1 | -0/+28 | ||
| | | | ||||||
| * | | Change type of some associative containers to their flat versions, including ↵ | 2014-12-15 | 1 | -1/+1 | ||
| | | | | | | | | | Extensible storage | |||||
| * | | Use TimingSafeCompare() to compare passwords and password hashes (non-hmac only) | 2014-06-28 | 1 | -1/+1 | ||
| | | | | | | | | | Issue #882 | |||||
| * | | Change allocation of InspIRCd::Parser to be physically part of the object ↵ | 2014-06-13 | 1 | -1/+1 | ||
| | | | | | | | | | containing it | |||||
| * | | Remove global Commandtable typedef | 2014-06-13 | 1 | -3/+3 | ||
| | | | ||||||
| * | | Change allocation of InspIRCd::stats to be physically part of the object ↵ | 2014-06-13 | 1 | -1/+1 | ||
| | | | | | | | | | | | | | containing it While at it, remove "stats" from all field names | |||||
| * | | Merge insp20 | 2014-04-07 | 1 | -1/+1 | ||
| |\| | ||||||
| | * | Fix snotice about disabled command usage being sent to the wrong snomask | 2014-04-04 | 1 | -1/+1 | ||
| | | | ||||||
| | * | Improve support for rarely used compilers, EKOPath in this case. | 2013-08-31 | 1 | -1/+1 | ||
| | | | ||||||
| * | | Add ProtocolInterface::BroadcastEncap() and infrastructure for manually ↵ | 2014-01-26 | 1 | -1/+3 | ||
| | | | | | | | | | forwarding ENCAPs | |||||
| * | | Convert InspIRCd::PassCompare to return bool instead of int. | 2014-01-25 | 1 | -6/+5 | ||
| | | | | | | | | | | | The insane behaviour of this method was due to an implementation detail which has since become irrelevent. | |||||
| * | | Stop null checking pointers that are always valid | 2014-01-09 | 1 | -1/+1 | ||
| | | | ||||||
| * | | Use WriteNumeric() everywhere we send numerics and include the user's nick ↵ | 2013-11-12 | 1 | -9/+8 | ||
| | | | | | | | | | automatically | |||||
| * | | Create the CommandBase class from Command | 2013-08-18 | 1 | -2/+6 | ||
| | | | | | | | | | The Handle() method is not part of CommandBase, making it possible to provide a different Handle() in each class derived from CommandBase | |||||
| * | | Change the syntax of FOREACH macros to be less dumb. | 2013-08-04 | 1 | -2/+2 | ||
| | | | ||||||
| * | | Remove dead code from the InspIRCd and CommandParser classes and typedefs.h | 2013-06-18 | 1 | -24/+0 | ||
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Removed functions: InspIRCd: - Restart() - unused - DoSocketTimeouts() - no implementation exists - AddCommand() - useless wrapper around ModuleManager::AddService() CommandParser: - IsValidCommand() - unused - ProcessParameters() - no implementation exists | |||||
| * | | Remove TR_END, remove TRANSLATEx() from commands that do not need it | 2013-06-13 | 1 | -1/+0 | ||
| | | | ||||||
| * | | Rewrite CommandParser::TranslateUIDs() | 2013-06-13 | 1 | -56/+33 | ||
| | | | ||||||
| * | | Run the OnPostCommand hook from LoopCall() | 2013-06-12 | 1 | -2/+10 | ||
| | | | ||||||
| * | | CommandParser::LoopCall() changes | 2013-06-12 | 1 | -32/+25 | ||
| | | | | | | | | | | | | | - Change function to be static, return a bool - Do not filter duplicates when there are 2 lists (JOIN) - Remove validation of 'extra' parameter, caller must pass either a valid index or -1 | |||||
| * | | Change command name parameter of OnPostCommand to be a Command* | 2013-06-12 | 1 | -1/+1 | ||
| | | | ||||||
| * | | Merge insp20 | 2013-06-06 | 1 | -2/+0 | ||
| |\| | ||||||
| | * | Remove unused variables, avoid copies where possible, check empty() instead ↵ | 2013-05-16 | 1 | -2/+0 | ||
| | | | | | | | | | | | | | of size() == 0 Most of these were detected by cppcheck | |||||
| * | | Remove #define MAXPARAMETERS and "MAXPARA" 005 token | 2013-06-01 | 1 | -1/+1 | ||
| | | | ||||||
| * | | CommandParser::ProcessCommand() and ProcessBuffer() cleanup | 2013-06-01 | 1 | -33/+32 | ||
| | | | | | | | | | | | - Change return types to void - Use a pointer to the command handler instead of an iterator | |||||
| * | | Improve command parser logic when there are more params than Command::max_params | 2013-06-01 | 1 | -22/+13 | ||
| | | | ||||||
| * | | Remove (non-functional) total_bytes counter from Command | 2013-06-01 | 1 | -1/+0 | ||
| | | | ||||||
| * | | Allow spaces (and more) in oper types | 2013-05-16 | 1 | -1/+1 | ||
| | | | | | | | | | | | The spaces are converted to '_' characters in OPERTYPE for 2.0 servers Issue #533 suggested by @ankitkv | |||||
| * | | Add LOG_ prefix to the log level enum values. | 2013-04-12 | 1 | -1/+1 | ||
| | | | ||||||
| * | | Replace IS_AWAY() and IS_OPER() macros with User::IsAway() and User::IsOper() | 2013-04-10 | 1 | -1/+1 | ||
| |/ | ||||||
| * | Add a flag to Command that controls whether an empty last parameter is ↵ | 2012-12-15 | 1 | -0/+7 | ||
| | | | | | allowed or not | |||||
| * | Change empty string assignments to .clear() or remove them entirely | 2012-11-28 | 1 | -3/+3 | ||
| | | | | | Part 2 of ba5c0db795824c3fc1ad48ce332d7bdc440cb77f | |||||
| * | Replace copyright headers with headers granting specific authors copyright | 2012-04-19 | 1 | -8/+18 | ||
| | | ||||||
| * | Add RAWIO log level which is more verbose than DEBUG | 2010-03-19 | 1 | -1/+1 | ||
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12646 e03df62e-2008-0410-955e-edbf42e46eb7 | |||||
| * | Extbans can be VF_OPTCOMMON as they do not desync on module add/remove | 2010-01-19 | 1 | -13/+2 | ||
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12303 e03df62e-2008-0410-955e-edbf42e46eb7 | |||||
| * | PreCommand/PostCommand are local-only hooks | 2010-01-18 | 1 | -5/+3 | ||
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12291 e03df62e-2008-0410-955e-edbf42e46eb7 | |||||
| * | Fix signdedness error in LoopCall | 2010-01-16 | 1 | -2/+2 | ||
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12268 e03df62e-2008-0410-955e-edbf42e46eb7 | |||||
| * | Allow maxtargets to be bypassed in LoopCall for JOIN | 2010-01-14 | 1 | -55/+10 | ||
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12255 e03df62e-2008-0410-955e-edbf42e46eb7 | |||||
| * | ...because every now and again, i have to do a massive commit. | 2010-01-11 | 1 | -1/+1 | ||
| | | | | | git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12248 e03df62e-2008-0410-955e-edbf42e46eb7 | |||||
