aboutsummaryrefslogtreecommitdiff
path: root/src/usermanager.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright headers.Gravatar InspIRCd Robot2024-09-071-1/+1
|
* Normalise the case of MOD_RESULT variables.Gravatar Sadie Powell2024-08-311-3/+3
|
* Update copyright headers.Gravatar InspIRCd Robot2024-06-071-4/+2
|
* Make the X-line quit message format a lot more flexible.Gravatar Sadie Powell2023-07-211-11/+3
|
* Make internal bug messages more consistent.Gravatar Sadie Powell2023-06-121-3/+3
|
* Remove unnecessary prefix from bancache log messages.Gravatar Sadie Powell2023-06-041-2/+2
|
* Allow customising the message shown when hiding an X-line ban.Gravatar Sadie Powell2023-04-181-3/+11
|
* Refactor the caching methods in User and rename to make more sense.Gravatar Sadie Powell2023-01-241-6/+6
|
* Convert log calls to use fmtlib format stringsGravatar Sadie Powell2023-01-241-4/+4
|
* Convert WriteToSnoMask/WriteGlobalSno to use fmtlib format strings.Gravatar Sadie Powell2023-01-231-3/+3
|
* Replace InspIRCd::Format with fmt::format.Gravatar Sadie Powell2023-01-231-2/+2
|
* Move NotifyRawIO to the Log namespace.Gravatar Sadie Powell2023-01-221-1/+1
|
* Convert various enums to strongly typed scoped enums.Gravatar Sadie Powell2023-01-221-1/+1
|
* Use the underlying transport method for pinging idle clients.Gravatar Sadie Powell2023-01-211-3/+16
| | | | Closes #1998.
* Make some functions that don't use `this` static.Gravatar Sadie Powell2023-01-111-1/+1
|
* Deduplicate sending the raw I/O logging warning.Gravatar Sadie Powell2023-01-091-1/+1
|
* Rework how users are assigned to connect classes.Gravatar Sadie Powell2023-01-081-6/+4
| | | | | | | | | | | - Move core connect class checks and <performance:clonesonconnect> to the core_user module. - Add pre-change and post-change events for when a connect class changes. - Split explicit class changing out into its own method. - Remove the need to almost always call CheckClass after SetClass. - Add use counting to the connect class instead of relying on the shared_ptr use count.
* Merge branch 'insp3' into master.Gravatar Sadie Powell2023-01-011-2/+1
|\
| * Update copyright headers.Gravatar InspIRCd Robot2022-12-301-2/+1
| |
* | Pass the client/server sockaddr around as a ref instead of a ptr.Gravatar Sadie Powell2022-12-251-1/+1
| |
* | Rework the levels things are logged at to make more sense.Gravatar Sadie Powell2022-12-181-4/+4
| |
* | Yet more stylistic fixes.Gravatar Sadie Powell2022-12-011-4/+7
| |
* | Refactor the internals of the oper system.Gravatar Sadie Powell2022-11-281-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | - 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 session registration to connection to avoid a semantic conflict.Gravatar Sadie Powell2022-10-291-12/+12
| | | | | | | | | | | | 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.
* | Use User::IsFullyConnected instead of checking for REG_ALL.Gravatar Sadie Powell2022-10-291-2/+2
| |
* | Allow UserManager::Find{Nick,UUID,} to ignore unregistered users.Gravatar Sadie Powell2022-10-291-7/+15
| |
* | Revert the previous commit slightly to work around a bug in Clang.Gravatar Sadie Powell2022-10-221-0/+5
| |
* | Assign more class members inline instead of in the constructor.Gravatar Sadie Powell2022-10-211-6/+0
| |
* | Rename user_hash to UserMap and move to usermanager.Gravatar Sadie Powell2022-10-071-2/+2
| |
* | Inline the one use of ServerNoticeAll and rm the function.Gravatar Sadie Powell2022-10-011-11/+0
| |
* | Fix various cases of the &* being next to the name instead of type.Gravatar Sadie Powell2022-09-291-1/+1
| |
* | Fix some warnings noticed by the readability-* clang-tidy checkers.Gravatar Sadie Powell2022-09-031-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-08-271-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2022-08-251-1/+1
| |
* | Rename OnSetUserIP to OnChangeRemoteAddress.Gravatar Sadie Powell2022-08-101-1/+1
| |
* | Remove some unnecessary getters in ConnectClass.Gravatar Sadie Powell2022-07-221-4/+4
| | | | | | | | All of these members are public anyway.
* | Switch from NULL to nullptr.Gravatar Sadie Powell2022-07-221-1/+1
| |
* | Make clientprotocol{msg,event} and numericbuilder non-default headers.Gravatar Sadie Powell2022-06-261-1/+2
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-05-311-10/+8
|\|
| * Make it more obvious when an I/O hook is misconfigured.Gravatar Sadie Powell2022-05-311-10/+8
| |
* | Rewrite logging calls to use the new APIs.Gravatar Sadie Powell2022-05-011-9/+9
| |
* | Abolish the infernal space before accessibility keywords.Gravatar Sadie Powell2022-01-251-1/+1
| |
* | Add the final keyword to all remaining classes that can have it.Gravatar Sadie Powell2021-12-201-1/+2
| |
* | Avoid duplicating User::MakeHostIP.Gravatar Sadie Powell2021-08-201-1/+1
| |
* | Added -Wshorten-64-to-32 and fixed all warnings.Gravatar Dominic Hamon2021-05-301-2/+2
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-05-141-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2021-05-141-1/+1
| |
* | Rip out the OnConnectionFail event.Gravatar Sadie Powell2021-04-191-10/+0
| | | | | | | | | | This never really worked correctly and will now be replaced with something better.
* | Fix various uses of the _t suffix which is reserved by POSIX.Gravatar Sadie Powell2021-04-171-1/+1
| |
* | Switch simple iterator loops to use range-based for loops.Gravatar Sadie Powell2021-04-071-17/+5
| |