| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Replace InspIRCd::Format with fmt::format. | 2023-01-23 | 1 | -2/+2 | |
| * | Qualify auto correctly in all cases. | 2023-01-10 | 1 | -1/+1 | |
| * | Merge branch 'insp3' into master. | 2023-01-01 | 1 | -1/+1 | |
| |\ | |||||
| | * | Update copyright headers. | 2022-12-30 | 1 | -1/+1 | |
| * | | Remove the unused Extensible* parameter to PassCompare/OnPassCompare. | 2022-12-10 | 1 | -2/+2 | |
| * | | Refactor the internals of the oper system.•••- Allow overriding privileges from the <class> blocks in the <type> and <oper> blocks. - Separate oper types from oper accounts in the code. This enables moving some core stuff out of the config tag later. - Merge the config tags together to make a synthetic tag that can have getXXX called on it instead of using getConfig and then converting it. - Move the details of Have*Permission into the oper type class. - Improve oper events to allow modules to easily hook into the oper system. | 2022-11-28 | 1 | -1/+1 | |
| * | | Rename session registration to connection to avoid a semantic conflict.•••We previously referred to both session registration and user registration as "registration" which is confusing for users who aren't familiar with how IRC works. | 2022-10-29 | 1 | -1/+1 | |
| * | | Use User::IsFullyConnected instead of checking for REG_ALL. | 2022-10-29 | 1 | -3/+3 | |
| * | | Use auto instead of type names where the type is obvious. | 2022-09-29 | 1 | -1/+1 | |
| * | | Fix various cases of the &* being next to the name instead of type. | 2022-09-29 | 1 | -1/+1 | |
| * | | Make internal penalty be specified in millisecs instead of seconds.•••This removes the need to multiply it later. | 2022-09-09 | 1 | -2/+2 | |
| * | | Remove some unnecessary getters in ConnectClass.•••All of these members are public anyway. | 2022-07-22 | 1 | -1/+1 | |
| * | | Switch from NULL to nullptr. | 2022-07-22 | 1 | -1/+1 | |
| * | | Improve the performance of AddCommand slightly. | 2022-07-22 | 1 | -8/+2 | |
| * | | Merge branch 'insp3' into master. | 2021-08-28 | 1 | -0/+1 | |
| |\| | |||||
| | * | Update copyright headers. | 2021-08-27 | 1 | -0/+1 | |
| * | | Merge branch 'insp3' into master. | 2021-06-13 | 1 | -9/+8 | |
| |\| | |||||
| | * | Code refactor and minor fix (#1879) | 2021-06-12 | 1 | -9/+9 | |
| * | | Switch simple iterator loops to use range-based for loops. | 2021-04-07 | 1 | -2/+2 | |
| * | | Fix a ton of pedantic compiler warnings. | 2021-04-04 | 1 | -1/+1 | |
| * | | Merge branch 'insp3' into master. | 2021-03-05 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update copyright headers. | 2021-03-05 | 1 | -1/+1 | |
| * | | Make MyClass private and move everything to GetClass. | 2021-01-31 | 1 | -1/+1 | |
| * | | 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.•••This restores previous behaviour which was lost when the original line parameter was removed. | 2018-09-11 | 1 | -4/+4 | |
| * | Implement IRCv3 message tag support.•••Co-authored-by: Attila Molnar <attilamolnar@hush.com> | 2018-08-13 | 1 | -38/+11 | |
| * | 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.•••This simplifies the logic of irc::tokenparser considerably and removes all of the magic index guessing that was used previously. | 2018-08-10 | 1 | -3/+3 | |
| * | Remove the original line parameter of On{Pre,Post}Command.•••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. | 2018-08-10 | 1 | -5/+5 | |
