aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_alias.cpp
Commit message (Expand)AuthorAgeFilesLines
* Rename session registration to connection to avoid a semantic conflict.•••We previously referred to both session registration and user registration as "registration" which is confusing for users who aren't familiar with how IRC works. Gravatar Sadie Powell2022-10-291-3/+1
* Use User::IsFullyConnected instead of checking for REG_ALL.Gravatar Sadie Powell2022-10-291-1/+1
* Use auto instead of type names where the type is obvious.Gravatar Sadie Powell2022-09-291-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-3/+4
* Switch from NULL to nullptr.Gravatar Sadie Powell2022-07-221-1/+1
* Abolish the infernal space before accessibility keywords.Gravatar Sadie Powell2022-01-251-2/+2
* Fix aliases which require routing to be broadcast out.Gravatar Sadie Powell2022-01-191-5/+10
* Refactor CoreException and ModuleException.Gravatar Sadie Powell2022-01-071-2/+2
* Apply the final keyword to all module classes where appropriate.Gravatar Sadie Powell2021-10-041-1/+1
* Mark all module classes as final.Gravatar Sadie Powell2021-10-011-1/+2
* Fix some places where U-line -> service was missed.Gravatar Sadie Powell2021-08-291-1/+1
* Remove a bunch of unnecessary whitespace.Gravatar Sadie Powell2021-08-171-1/+0
* Migrate collections from insert to emplace.Gravatar Sadie Powell2021-04-181-1/+1
* Constify variables within loops.Gravatar Sadie Powell2021-04-011-1/+1
* Merge branch 'insp3' into master.Gravatar Sadie Powell2021-03-051-2/+2
|\
| * Update copyright headers.Gravatar InspIRCd Robot2021-03-051-2/+2
* | Move iterator_range to the utility directory and renamespace.Gravatar Sadie Powell2021-03-021-2/+2
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-02-281-4/+5
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2021-02-261-2/+2
| * Fix the numeric sent when a U-lined alias target is not online.Gravatar Sadie Powell2021-02-181-2/+3
* | Rename <alias:uline> to <alias:service>.Gravatar Sadie Powell2021-01-301-4/+4
* | Use references instead of pointers for aliases.Gravatar Sadie Powell2020-11-111-18/+18
* | Add stdalgo::equal_range and switch more stuff to iterator_range.Gravatar Sadie Powell2020-11-111-12/+12
* | Initial support for platform-specific module file extensions.Gravatar Sadie Powell2020-11-041-1/+1
* | Move FilePosition to fileutils.h and use in ConfigTag.Gravatar Sadie Powell2020-11-031-2/+2
* | Convert ConfigTag from reference<> to std::shared_ptr<>.Gravatar Sadie Powell2020-10-311-1/+1
* | Add stdalgo::iterator_range and switch config tag reading to use it.•••This allows us to use range-based for loops which were not possible with the previous config tag system. Gravatar Sadie Powell2020-10-311-3/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-05-051-1/+1
|\|
| * Fixes by misspell-fixerGravatar InspIRCd Robot2020-04-211-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-6/+2
* | Move FindNickOnly to UserManager.Gravatar Sadie Powell2020-02-091-1/+1
* | Use C++11 inline initialisation for class members.Gravatar Sadie Powell2020-02-061-2/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-171-4/+9
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-111-4/+9
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-011-1/+1
|\|
| * Use FindNickOnly for finding the required nick for an alias.Gravatar Peter Powell2019-12-211-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-09-231-1/+9
|\|
| * m_alias: Add option to strip colors when matchingGravatar linuxdaemon2019-09-141-1/+9
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-07-161-1/+1
|\|
| * Use a less scary message when an alias target is not U-lined.•••99% of cases of this are due to misconfigurations not due to underhanded behaviour. Gravatar Peter Powell2019-06-061-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-05-151-3/+3
|\|
| * Textual improvements and fixes such as typos, casing, etc. (#1612)Gravatar Robby2019-04-281-3/+3
* | SnomaskManager: remove fakederef.Gravatar Sadie Powell2019-02-071-1/+1
* | ModuleManager: remove fakederef.Gravatar Sadie Powell2019-02-071-2/+2
* | Replace the override macro with the override keyword.Gravatar Sadie Powell2019-01-251-6/+6
|/
* Fix m_alias not initialising 'active' before use.Gravatar Peter Powell2019-01-091-0/+1
* Make more modules rehash atomically (#1535)•••Have each module validate the values it loads before setting them, so any errors don't result in partial application of the configs Gravatar linuxdaemon2018-12-191-7/+15