aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_swhois.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright headers.Gravatar InspIRCd Robot2024-06-071-3/+3
|
* Fix casing of metadata in function and event names.Gravatar Sadie Powell2023-05-301-1/+1
| | | | Metadata is one word not two so it shouldn't be capitalised like this.
* Convert WriteToSnoMask/WriteGlobalSno to use fmtlib format strings.Gravatar Sadie Powell2023-01-231-2/+2
|
* Qualify auto correctly in all cases.Gravatar Sadie Powell2023-01-101-1/+1
|
* Merge branch 'insp3' into master.Gravatar Sadie Powell2023-01-011-1/+1
|\
| * Update copyright headers.Gravatar InspIRCd Robot2022-12-301-1/+1
| |
* | Move extension types to their own header to speed up build times.Gravatar Sadie Powell2022-12-191-0/+1
| |
* | Move <oper:autologin> from m_sslinfo to core_oper and rework.Gravatar Sadie Powell2022-12-111-1/+1
| | | | | | | | | | | | | | | | - Promote autologin to a core concept with visibility in events. - Replace the binary yes/no value with strict/relaxed/never. This intentionally breaks v3 oper block autologin as admins will need to review them for the security implications of the new behaviour.
* | Refactor the internals of the oper system.Gravatar Sadie Powell2022-11-281-4/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | - 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.
* | Use auto instead of type names where the type is obvious.Gravatar Sadie Powell2022-09-291-1/+1
| |
* | Default allow_empty_last_param to false.Gravatar Sadie Powell2022-09-071-0/+1
| |
* | Move numeric helper classes to their own header.Gravatar Sadie Powell2022-06-261-0/+1
| |
* | Remove unnecessary arguments to On(Post)Oper.Gravatar Sadie Powell2022-05-071-1/+1
| | | | | | | | These are already accessible from the user object.
* | The target in OnDecodeMetaData can be nullptr sometimes.Gravatar Sadie Powell2022-01-311-1/+1
| |
* | Add the type to the Extensible class.Gravatar Sadie Powell2022-01-311-3/+2
| |
* | Abolish the infernal space before accessibility keywords.Gravatar Sadie Powell2022-01-251-3/+3
| |
* | Make all extensibles use kebab-case for names where possible.Gravatar Sadie Powell2021-12-261-1/+1
| |
* | Promote ExtensionItem::ExtensibleType to a top level enum class.Gravatar Sadie Powell2021-12-231-2/+2
| |
* | Mark all command classes as final.Gravatar Sadie Powell2021-10-011-1/+2
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-08-281-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2021-08-271-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-07-171-18/+15
|\|
| * Deduplicate all whois numerics to the whois module header.Gravatar Sadie Powell2021-07-051-8/+0
| |
| * Don't send oper swhois to users with hideoper enabled.Gravatar Sadie Powell2021-07-051-12/+18
| |
* | Kill some useless comments.Gravatar Sadie Powell2021-05-131-2/+0
| |
* | Add a subclass of ExtensionItem exclusively for booleans.Gravatar Sadie Powell2021-03-171-2/+2
| |
* | Implement support for automatically syncing extension items.Gravatar Sadie Powell2021-03-171-10/+0
| |
* | Pascalize Unset in extension item classes.Gravatar Sadie Powell2021-03-171-5/+5
| |
* | Pascalize Set in extension item classes.Gravatar Sadie Powell2021-03-171-3/+3
| |
* | Pascalize Get in extension item classes.Gravatar Sadie Powell2021-03-171-4/+4
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-03-051-1/+2
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2021-03-051-1/+2
| |
* | Replace all internal references to uline with services.Gravatar Sadie Powell2021-01-301-2/+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
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-04-111-1/+1
|\|
| * Update the module descriptions using mkversion.Gravatar Sadie Powell2020-04-101-1/+1
| |
* | Improve storage of module description, flags, and link data.Gravatar Sadie Powell2020-04-111-7/+6
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-03-181-1/+2
|\|
| * Fix unnecessary inlining in command handler constructors.Gravatar Sadie Powell2020-03-091-1/+2
| |
* | Move FindNick to UserManager.Gravatar Sadie Powell2020-02-091-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-171-5/+5
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-111-5/+5
| |
* | Replace LocalIntExt with IntExtItem.Gravatar Sadie Powell2019-08-131-4/+4
| |
* | Rewrite and merge LocalStringExt, StringExtItem.Gravatar Sadie Powell2019-08-131-1/+1
| |
* | Move the Module parameter of ExtensionItem et al to the start.Gravatar Sadie Powell2019-08-131-2/+2
| | | | | | | | This matches what other ServiceProvider types do.
* | Replace translation macros with a C++11 initialiser list.Gravatar Sadie Powell2019-02-151-1/+1
| |