| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Update copyright headers. | 2024-06-07 | 1 | -3/+3 | |
| | | |||||
| * | Allow also using a prefix chat in autoop and exemptchanops. | 2023-04-21 | 1 | -1/+6 | |
| | | |||||
| * | Replace InspIRCd::Format with fmt::format. | 2023-01-23 | 1 | -2/+2 | |
| | | |||||
| * | Merge branch 'insp3' into master. | 2023-01-01 | 1 | -1/+0 | |
| |\ | |||||
| | * | Update copyright headers. | 2022-12-30 | 1 | -1/+0 | |
| | | | |||||
| * | | Switch from NULL to nullptr. | 2022-07-22 | 1 | -1/+1 | |
| | | | |||||
| * | | Move numeric helper classes to their own header. | 2022-06-26 | 1 | -0/+1 | |
| | | | |||||
| * | | Add a typedef for a mode rank. | 2022-05-17 | 1 | -1/+1 | |
| | | | |||||
| * | | Remove ValidateParam and rename CanonicalizeParam. | 2022-04-17 | 1 | -1/+2 | |
| | | | | | | | | | | | | | | | There's basically no safe way to handle a malformed list mode sent by a remote server without causing a desync. Its probably for the best if we just only apply validation to locally added list modes entries. | ||||
| * | | Add ListModeBase::CanonicalizeParam, fix cleaning extban masks. | 2022-04-16 | 1 | -1/+1 | |
| | | | |||||
| * | | Make the parameter field of ValidateParam const. | 2022-04-16 | 1 | -5/+5 | |
| | | | |||||
| * | | Use a consistent message format for end of list numerics. | 2022-04-01 | 1 | -1/+1 | |
| | | | |||||
| * | | Abolish the infernal space before accessibility keywords. | 2022-01-25 | 1 | -4/+4 | |
| | | | |||||
| * | | Apply the final keyword to all module classes where appropriate. | 2021-10-04 | 1 | -1/+2 | |
| | | | |||||
| * | | Mark all mode classes as final. | 2021-10-01 | 1 | -1/+2 | |
| | | | |||||
| * | | Mark all module classes as final. | 2021-10-01 | 1 | -1/+2 | |
| | | | |||||
| * | | Switch simple iterator loops to use range-based for loops. | 2021-04-07 | 1 | -4/+5 | |
| | | | |||||
| * | | Fix a ton of pedantic compiler warnings. | 2021-04-04 | 1 | -4/+4 | |
| | | | |||||
| * | | Convert various mode methods to take Mode::Change. | 2021-03-30 | 1 | -4/+4 | |
| | | | | | | | | | | | | | | | | | - AccessCheck - AfterMode - BeforeMode - OnModeChange - OnRawMode | ||||
| * | | Merge branch 'insp3' into master. | 2020-05-05 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update copyright headers. | 2020-04-24 | 1 | -1/+1 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2020-04-11 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update the module descriptions using mkversion. | 2020-04-10 | 1 | -1/+1 | |
| | | | |||||
| * | | Improve storage of module description, flags, and link data. | 2020-04-11 | 1 | -6/+4 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2020-02-19 | 1 | -3/+7 | |
| |\| | |||||
| | * | Add enum constants for list mode numerics. | 2020-02-18 | 1 | -3/+7 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2020-01-17 | 1 | -0/+4 | |
| |\| | |||||
| | * | Update copyright headers. | 2020-01-11 | 1 | -0/+4 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2019-07-16 | 1 | -18/+56 | |
| |\| | |||||
| | * | Show the mode syntax in ERR_INVALIDMODEPARAM. | 2019-06-12 | 1 | -3/+4 | |
| | | | |||||
| | * | Fix building on older compiler versions. | 2019-06-07 | 1 | -1/+1 | |
| | | | |||||
| | * | Validate the exemptchanops parameter better and check permissions. | 2019-06-07 | 1 | -16/+53 | |
| | | | | | | | | | Closes #1055. | ||||
| * | | Merge branch 'insp3' into master. | 2019-05-15 | 1 | -1/+1 | |
| |\| | |||||
| | * | Textual improvements and fixes such as typos, casing, etc. (#1612) | 2019-04-28 | 1 | -1/+1 | |
| | | | |||||
| * | | ModeParser: remove fakederef. | 2019-02-07 | 1 | -3/+3 | |
| | | | |||||
| * | | Replace the override macro with the override keyword. | 2019-01-25 | 1 | -4/+4 | |
| |/ | |||||
| * | Add the <maxlist> tag and switch ListModeBase to always use it. | 2018-12-19 | 1 | -2/+6 | |
| | | | | | | | | | | | | | | | The old method of doing this was: 1. Extremely inconsistently used. Some list modes used <banlist> and some used their own config tag. 2. Not documented in the slightest. There was a small reference to <maxbans> for the ban mode but nothing else. 3. In some cases conflicting with other config tags. The chanfilter module defined a <chanfilter> tag for general config whilst also using it for the max list settings. The new <maxlist> tag avoids these issues entirely. | ||||
| * | Use consistent numerics when a mode already exists or doesn't exist. | 2018-12-09 | 1 | -10/+0 | |
| | | |||||
| * | Use ERR_BANLISTFULL in the chanfilter and exemptchanops modules. | 2018-12-09 | 1 | -5/+0 | |
| | | |||||
| * | Add ERR_INVALIDMODEPARAM for responding to invalid mode params. | 2018-01-29 | 1 | -2/+2 | |
| | | | | | | | | | | | | | | | | Currently on invalid modes we do a combination of different things: 1. Send a custom mode-specific numeric (which often collides with other modes). 2. Send a server notice. 3. Do absolutely nothing. This new numeric is a generic way of handling invalid parameters when setting a mode that avoids all of the mistakes of the previous behaviour. | ||||
| * | Add the override keyword in places that it is missing. | 2017-11-21 | 1 | -5/+4 | |
| | | | | | GCCs warnings for this are much better than Clangs. | ||||
| * | Move the OnCheckExemption hook out of the core. | 2017-03-20 | 1 | -14/+9 | |
| | | |||||
| * | Convert WriteNumeric() calls to pass the parameters of the numeric as method ↵ | 2016-02-25 | 1 | -5/+5 | |
| | | | | | parameters | ||||
| * | Reduce std::string::substr() usage | 2015-01-10 | 1 | -2/+2 | |
| | | | | | substr() returns a new string while erase() and assign() modify the existing one | ||||
| * | m_exemptchanops Fix parameter validation | 2014-08-06 | 1 | -2/+16 | |
| | | |||||
| * | Switch to std::string::compare() from substr() in a couple of places | 2014-05-26 | 1 | -1/+1 | |
| | | |||||
| * | Add a ModeParser::FindMode() overload that takes a mode name and a mode type | 2014-02-20 | 1 | -11/+4 | |
| | | |||||
| * | Remove some dead code | 2014-01-31 | 1 | -1/+0 | |
| | | |||||
| * | Use WriteNumeric() everywhere we send numerics and include the user's nick ↵ | 2013-11-12 | 1 | -4/+4 | |
| | | | | | automatically | ||||
| * | Send ListModeBase modes implicitly on channel sync | 2013-09-12 | 1 | -5/+0 | |
| | | | | | Remove Module::ProtoSendMode() and ListModeBase::DoSyncChannel() | ||||
