| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Update copyright headers. | 2024-09-07 | 1 | -1/+1 | |
| * | Use auto in GetLevelRequired and GetSyntax. | 2024-08-29 | 1 | -5/+2 | |
| * | Update copyright headers. | 2024-06-21 | 1 | -1/+1 | |
| * | Update copyright headers. | 2024-06-07 | 1 | -2/+2 | |
| * | Retain the "real" username properly like we do for hostnames.•••This introduces the concept of a real username. This value comes from either the initial USER message or from an ident lookup. Doing this allows us to use it for bans through vidents and cloaking web client users using their remote username. While changing this I also changed all of the uses of "ident" other than RFC 1413 lookups and some compatibility cases to refer to usernames as user(name) instead of ident. Our use of ident in these places was incorrect as that only refers to the RFC 1413 response and is not commonly used in the way we used it by any other IRC server implementations. | 2023-06-29 | 1 | -2/+2 | |
| * | Replace ModeAction with bool.•••This enum is functionally the same as bool but with weird semantics. | 2023-01-22 | 1 | -16/+7 | |
| * | Merge branch 'insp3' into master. | 2023-01-01 | 1 | -1/+1 | |
| |\ | |||||
| | * | Update copyright headers. | 2022-12-30 | 1 | -1/+1 | |
| * | | Fix some types which were missed when making stuff final. | 2022-10-30 | 1 | -1/+1 | |
| * | | Fix various inappropriate uses of UINT_MAX. | 2022-10-14 | 1 | -1/+1 | |
| * | | Fix various cases of the &* being next to the name instead of type. | 2022-09-29 | 1 | -2/+2 | |
| * | | Fix some warnings noticed by the readability-* clang-tidy checkers. | 2022-09-03 | 1 | -2/+2 | |
| * | | Switch from NULL to nullptr. | 2022-07-22 | 1 | -6/+6 | |
| * | | Fix the modehandlers array being bigger than necessary•••We now pack the positions within this array so we can shrink it. | 2022-06-23 | 1 | -5/+2 | |
| * | | Use size_t instead of `unsigned int` in ModeParser. | 2022-06-11 | 1 | -1/+1 | |
| * | | Add a typedef for a mode rank. | 2022-05-17 | 1 | -9/+13 | |
| * | | Store a set of list mode pointers in Membership instead of characters. | 2022-05-17 | 1 | -0/+9 | |
| * | | Fix various Doxygen comment issues. | 2022-05-02 | 1 | -1/+1 | |
| * | | Merge branch 'insp3' into master. | 2022-04-29 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update copyright headers. | 2022-04-28 | 1 | -1/+1 | |
| * | | Merge branch 'insp3' into master. | 2022-04-16 | 1 | -0/+6 | |
| |\| | |||||
| | * | Add a method for finding the next prefix mode above a rank. | 2022-04-11 | 1 | -0/+6 | |
| * | | Replace duplicated documentation with @copydoc. | 2022-04-16 | 1 | -24/+5 | |
| * | | Pack the mode set more efficiently and add support for numeric modes. | 2022-03-27 | 1 | -0/+4 | |
| * | | Add a typedef for the mode status bitset. | 2022-03-27 | 1 | -0/+3 | |
| * | | Fix unsigned/const keyword ordering, remove unnecessary consts. | 2022-03-27 | 1 | -2/+2 | |
| * | | Abolish the infernal space before accessibility keywords. | 2022-01-25 | 1 | -13/+13 | |
| * | | Fix a few Doxygen comment errors. | 2022-01-24 | 1 | -1/+1 | |
| * | | Add constexpr to the initialisation of various const static fields. | 2022-01-18 | 1 | -3/+3 | |
| * | | Refactor CoreException and ModuleException. | 2022-01-07 | 1 | -1/+1 | |
| * | | Add the final keyword to all remaining classes that can have it. | 2021-12-20 | 1 | -6/+11 | |
| * | | Remove a bunch of unnecessary whitespace. | 2021-08-17 | 1 | -1/+0 | |
| * | | Merge branch 'insp3' into master. | 2021-07-04 | 1 | -3/+7 | |
| |\| | |||||
| | * | Fix some "targ" usages which were missed in the earlier commit. | 2021-07-03 | 1 | -3/+7 | |
| * | | Move ModeParser::BuildPrefixes to core_mode.•••Now we've dropped support for the 1202 protocol we don't need this in the core. | 2021-07-03 | 1 | -5/+0 | |
| * | | Move ModeParser::GiveModeList to core_mode.•••Now we've dropped support for the 1202 protocol we don't need this in the core. | 2021-07-03 | 1 | -8/+0 | |
| * | | Merge branch 'insp3' into master. | 2021-07-01 | 1 | -1/+1 | |
| |\| | |||||
| | * | Fix various spelling issues (#1883).•••Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> | 2021-06-21 | 1 | -1/+1 | |
| * | | Rename Simple{Channel,User}ModeHandler to match other mode handlers. | 2021-06-01 | 1 | -4/+4 | |
| * | | Added -Wshorten-64-to-32 and fixed all warnings. | 2021-05-30 | 1 | -1/+1 | |
| * | | Merge branch 'insp3' into master. | 2021-05-11 | 1 | -2/+2 | |
| |\| | |||||
| | * | Fix a bunch of weird indentation and spacing issues. | 2021-04-27 | 1 | -2/+2 | |
| * | | Constify their_param in ResolveModeConflict.•••There's no reason for this to be mutable. | 2021-04-06 | 1 | -1/+1 | |
| * | | Fix a ton of pedantic compiler warnings. | 2021-04-04 | 1 | -21/+11 | |
| * | | Merge branch 'insp3' into master. | 2021-03-31 | 1 | -1/+1 | |
| |\| | |||||
| | * | Fix various documentation comments. | 2021-03-31 | 1 | -1/+1 | |
| * | | Convert various mode methods to take Mode::Change.•••- AccessCheck - AfterMode - BeforeMode - OnModeChange - OnRawMode | 2021-03-30 | 1 | -8/+8 | |
| * | | Merge branch 'insp3' into master. | 2021-03-05 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update copyright headers. | 2021-03-05 | 1 | -1/+1 | |
| * | | Refactor classbase/CullResult into Cullable/Cullable::Result. | 2021-03-02 | 1 | -2/+2 | |
