| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Clean up a bunch of contructors and destructors. | 2020-11-01 | 1 | -4/+0 | |
| | | |||||
| * | Convert CmdResult to an 8-bit strongly typed enum. | 2020-10-27 | 1 | -2/+2 | |
| | | |||||
| * | Switch to the C++17 fallthrough attribute. | 2020-05-11 | 1 | -1/+1 | |
| | | |||||
| * | Merge branch 'insp3' into master. | 2020-05-05 | 1 | -3/+3 | |
| |\ | |||||
| | * | Update copyright headers. | 2020-04-24 | 1 | -1/+1 | |
| | | | |||||
| | * | Fixes by misspell-fixer | 2020-04-21 | 1 | -2/+2 | |
| | | | |||||
| * | | Replace the flags_required field with an enum. | 2020-04-14 | 1 | -19/+42 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2020-03-18 | 1 | -42/+4 | |
| |\| | |||||
| | * | Allow commands to override ERR_{NEEDSMOREPARAMS,NOTREGISTERED}. | 2020-03-18 | 1 | -4/+2 | |
| | | | |||||
| | * | Fix detection of the "plaintext" pseudo-hash being case sensitive. | 2020-03-11 | 1 | -1/+1 | |
| | | | |||||
| | * | Move command stuff to a more appropriate source file. | 2020-03-05 | 1 | -42/+0 | |
| | | | |||||
| | * | Move user command stuff from CommandBase to Command. | 2020-03-05 | 1 | -5/+5 | |
| | | | |||||
| * | | Move FindNick to UserManager. | 2020-02-09 | 1 | -1/+1 | |
| | | | |||||
| * | | Use C++11 inline initialisation for class members. | 2020-02-06 | 1 | -6/+0 | |
| |/ | |||||
| * | Update copyright headers. | 2020-01-31 | 1 | -1/+1 | |
| | | |||||
| * | Add an event for when a command is blocked before execution. | 2020-01-22 | 1 | -0/+15 | |
| | | |||||
| * | Remove unnecessary copies of CommandBase::Params in LoopCall. | 2020-01-22 | 1 | -6/+5 | |
| | | |||||
| * | Update copyright headers. | 2020-01-11 | 1 | -4/+6 | |
| | | |||||
| * | Rename HasPermission to HasCommandPermission. | 2019-04-19 | 1 | -2/+2 | |
| | | |||||
| * | Rename User::nping to nextping for consistency with lastping. | 2019-02-15 | 1 | -1/+1 | |
| | | |||||
| * | Move the <disabled> tag out of the core to a new module. | 2019-01-24 | 1 | -19/+0 | |
| | | |||||
| * | Fix a bunch of harmless compiler warnings on recent GCC releases. | 2018-10-26 | 1 | -1/+1 | |
| | | |||||
| * | Amend OnPostCommand to specify whether the command is loopcalled. | 2018-09-11 | 1 | -4/+4 | |
| | | | | | | This restores previous behaviour which was lost when the original line parameter was removed. | ||||
| * | Implement IRCv3 message tag support. | 2018-08-13 | 1 | -38/+11 | |
| | | | | | Co-authored-by: Attila Molnar <attilamolnar@hush.com> | ||||
| * | Move message parsing to ProcessBuffer and fix edge cases in it. | 2018-08-10 | 1 | -22/+38 | |
| | | |||||
| * | Split irc::tokenparser::GetToken into GetMiddle and GetTrailing. | 2018-08-10 | 1 | -3/+3 | |
| | | | | | | This simplifies the logic of irc::tokenparser considerably and removes all of the magic index guessing that was used previously. | ||||
| * | Remove the original line parameter of On{Pre,Post}Command. | 2018-08-10 | 1 | -5/+5 | |
| | | | | | | | | | | In the brave new world of message tags and alternate wire formats this is no longer something that is appropriate to expose. In reality it was only ever used by m_alias which now reconstitutes the command name and parameters into a RFC 1459-style message for whatever it needs to do. | ||||
| * | 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 | |
| | | | |||||
