aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_check.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Refactor the caching methods in User and rename to make more sense.Gravatar Sadie Powell2023-01-241-6/+6
|
* Replace InspIRCd::Format with fmt::format.Gravatar Sadie Powell2023-01-231-6/+4
|
* Qualify auto correctly in all cases.Gravatar Sadie Powell2023-01-101-3/+3
|
* Merge branch 'insp3' into master.Gravatar Sadie Powell2023-01-011-2/+0
|\
| * Update copyright headers.Gravatar InspIRCd Robot2022-12-301-2/+0
| |
* | Yet more stylistic fixes.Gravatar Sadie Powell2022-12-011-1/+1
| |
* | Move the oper statistics to core_oper and rewrite.Gravatar Sadie Powell2022-11-291-37/+4
| | | | | | | | | | | | | | The numerics we used previously were not being used according to the RFC and every implementation has their own behaviour here which makes it hard for clients to do anything reasonable. Instead of this using the generic stats numeric makes a lot more sense.
* | Refactor the internals of the oper system.Gravatar Sadie Powell2022-11-281-4/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | - 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.
* | Rename User::age to User::nickchanged and fix the docs.Gravatar Sadie Powell2022-10-111-1/+1
| |
* | Use auto instead of type names where the type is obvious.Gravatar Sadie Powell2022-09-291-2/+2
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-09-211-0/+1
|\|
| * Add the protocol serializer to the check output.Gravatar Sadie Powell2022-09-211-0/+1
| |
* | Fix some warnings noticed by the readability-* clang-tidy checkers.Gravatar Sadie Powell2022-09-031-1/+1
| |
* | Replace GetUserCounter() with GetUsers().size().Gravatar Sadie Powell2022-08-241-1/+1
| | | | | | | | | | This method is legacy from when there was a manual user counter and isn't much of a length saving over the unsugared version.
* | Make clientprotocol{msg,event} and numericbuilder non-default headers.Gravatar Sadie Powell2022-06-261-0/+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-03-271-1/+1
|\|
| * Fix real name formatting bleeding into IRC messages.Gravatar Sadie Powell2022-03-211-1/+1
| |
* | Abolish the infernal space before accessibility keywords.Gravatar Sadie Powell2022-01-251-6/+6
| |
* | Apply the final keyword to all module classes where appropriate.Gravatar Sadie Powell2021-10-041-2/+3
| |
* | Mark all command classes as final.Gravatar Sadie Powell2021-10-011-1/+2
| |
* | Mark all module classes as final.Gravatar Sadie Powell2021-10-011-1/+2
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-08-281-4/+5
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2021-08-271-3/+4
| |
* | Significantly upgrade the check module's ability to find users.Gravatar Sadie Powell2021-08-281-10/+31
| | | | | | | | | | | | | | | | | | | | | | | | - Check for users based on nick mask, ident mask, and real name mask as well as ip mask and host mask. - Include matching user's nick, ident and displayed host in the command output. - Specify in the output what was actually matched against. Closes #1909.
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-07-041-25/+25
|\|
| * Fix some "targ" usages which were missed in the earlier commit.Gravatar Sadie Powell2021-07-031-25/+25
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-07-011-27/+24
|\|
| * Fix various spelling issues (#1883).Gravatar Josh Soref2021-06-211-21/+21
| | | | | | | | Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
| * Code refactor and minor fix (#1879)Gravatar Herman2021-06-121-4/+5
| |
* | Kill some useless comments.Gravatar Sadie Powell2021-05-131-2/+0
| |
* | Move channel logic from InspIRCd to the new ChannelManager class.Gravatar Sadie Powell2021-05-081-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-04-111-11/+1
|\|
| * Show all prefix modes in the CHECK onchans output.Gravatar Sadie Powell2021-04-071-8/+1
| |
* | Switch simple iterator loops to use range-based for loops.Gravatar Sadie Powell2021-04-071-31/+20
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-02-281-1/+11
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2021-02-261-1/+1
| |
| * Add snomask permissions to the oper check output.Gravatar Sadie Powell2021-02-221-0/+10
| |
* | Rename NickMax to MaxNick for consistency with the other limits.Gravatar Sadie Powell2020-11-271-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-11-011-0/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-10-301-0/+1
| |
* | Convert OperInfo from reference<> to std::shared_ptr<>.Gravatar Sadie Powell2020-10-311-4/+3
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-10-271-0/+2
|\|
| * Add the User::exempt flag to m_check.Gravatar Matt Schatz2020-10-061-0/+2
| |
* | Convert CmdResult to an 8-bit strongly typed enum.Gravatar Sadie Powell2020-10-271-2/+2
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-05-051-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-04-241-1/+1
| |
* | Replace the flags_required field with an enum.Gravatar Sadie Powell2020-04-141-1/+1
| |
* | Alow modules to specify multiple syntax lines.Gravatar Sadie Powell2020-04-141-1/+1
| |