aboutsummaryrefslogtreecommitdiff
path: root/include/mode.h
Commit message (Expand)AuthorAgeFilesLines
* 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. Gravatar Sadie Powell2023-06-291-2/+2
* Replace ModeAction with bool.•••This enum is functionally the same as bool but with weird semantics. Gravatar Sadie Powell2023-01-221-16/+7
* Merge branch 'insp3' into master.Gravatar Sadie Powell2023-01-011-1/+1
|\
| * Update copyright headers.Gravatar InspIRCd Robot2022-12-301-1/+1
* | Fix some types which were missed when making stuff final.Gravatar Sadie Powell2022-10-301-1/+1
* | Fix various inappropriate uses of UINT_MAX.Gravatar Sadie Powell2022-10-141-1/+1
* | Fix various cases of the &* being next to the name instead of type.Gravatar Sadie Powell2022-09-291-2/+2
* | Fix some warnings noticed by the readability-* clang-tidy checkers.Gravatar Sadie Powell2022-09-031-2/+2
* | Switch from NULL to nullptr.Gravatar Sadie Powell2022-07-221-6/+6
* | Fix the modehandlers array being bigger than necessary•••We now pack the positions within this array so we can shrink it. Gravatar Sadie Powell2022-06-231-5/+2
* | Use size_t instead of `unsigned int` in ModeParser.Gravatar Sadie Powell2022-06-111-1/+1
* | Add a typedef for a mode rank.Gravatar Sadie Powell2022-05-171-9/+13
* | Store a set of list mode pointers in Membership instead of characters.Gravatar Sadie Powell2022-05-171-0/+9
* | Fix various Doxygen comment issues.Gravatar Sadie Powell2022-05-021-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-04-291-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2022-04-281-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-04-161-0/+6
|\|
| * Add a method for finding the next prefix mode above a rank.Gravatar Sadie Powell2022-04-111-0/+6
* | Replace duplicated documentation with @copydoc.Gravatar Sadie Powell2022-04-161-24/+5
* | Pack the mode set more efficiently and add support for numeric modes.Gravatar Sadie Powell2022-03-271-0/+4
* | Add a typedef for the mode status bitset.Gravatar Sadie Powell2022-03-271-0/+3
* | Fix unsigned/const keyword ordering, remove unnecessary consts.Gravatar Sadie Powell2022-03-271-2/+2
* | Abolish the infernal space before accessibility keywords.Gravatar Sadie Powell2022-01-251-13/+13
* | Fix a few Doxygen comment errors.Gravatar Sadie Powell2022-01-241-1/+1
* | Add constexpr to the initialisation of various const static fields.Gravatar Sadie Powell2022-01-181-3/+3
* | Refactor CoreException and ModuleException.Gravatar Sadie Powell2022-01-071-1/+1
* | Add the final keyword to all remaining classes that can have it.Gravatar Sadie Powell2021-12-201-6/+11
* | Remove a bunch of unnecessary whitespace.Gravatar Sadie Powell2021-08-171-1/+0
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-07-041-3/+7
|\|
| * Fix some "targ" usages which were missed in the earlier commit.Gravatar Sadie Powell2021-07-031-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. Gravatar Sadie Powell2021-07-031-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. Gravatar Sadie Powell2021-07-031-8/+0
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-07-011-1/+1
|\|
| * Fix various spelling issues (#1883).•••Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> Gravatar Josh Soref2021-06-211-1/+1
* | Rename Simple{Channel,User}ModeHandler to match other mode handlers.Gravatar Sadie Powell2021-06-011-4/+4
* | Added -Wshorten-64-to-32 and fixed all warnings.Gravatar Dominic Hamon2021-05-301-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-05-111-2/+2
|\|
| * Fix a bunch of weird indentation and spacing issues.Gravatar Sadie Powell2021-04-271-2/+2
* | Constify their_param in ResolveModeConflict.•••There's no reason for this to be mutable. Gravatar Sadie Powell2021-04-061-1/+1
* | Fix a ton of pedantic compiler warnings.Gravatar Sadie Powell2021-04-041-21/+11
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-03-311-1/+1
|\|
| * Fix various documentation comments.Gravatar Sadie Powell2021-03-311-1/+1
* | Convert various mode methods to take Mode::Change.•••- AccessCheck - AfterMode - BeforeMode - OnModeChange - OnRawMode Gravatar Sadie Powell2021-03-301-8/+8
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-03-051-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2021-03-051-1/+1
* | Refactor classbase/CullResult into Cullable/Cullable::Result.Gravatar Sadie Powell2021-03-021-2/+2
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-02-281-0/+10
|\|
| * Fix not sending ERR_INVALIDMODEPARAM when a parameter is malformed.•••Closes #1850. Gravatar Sadie Powell2021-02-271-0/+10
* | Clean up a bunch of contructors and destructors.Gravatar Sadie Powell2020-11-011-2/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-05-051-6/+6
|\|