aboutsummaryrefslogtreecommitdiff
path: root/src/usermanager.cpp
Commit message (Collapse)AuthorAgeFilesLines
* 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
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-03-101-1/+1
|\|
| * Rename `<bind:ssl>` to `<bind:sslprofile>`.Gravatar Sadie Powell2021-03-101-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-02-281-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2021-02-261-1/+1
| |
* | Make MyClass private and move everything to GetClass.Gravatar Sadie Powell2021-01-311-4/+4
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-12-211-1/+1
|\|
| * Hide the server name/desc better when <options:hideserver> is set.Gravatar Sadie Powell2020-12-201-1/+1
| |
* | Move FilePosition to fileutils.h and use in ConfigTag.Gravatar Sadie Powell2020-11-031-1/+1
| |
* | Fix the case of getError/getSendQSize and rewrite the doc comments.Gravatar Sadie Powell2020-07-201-3/+3
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-03-181-1/+0
|\|
| * Implement support for the SERVLIST command.Gravatar Sadie Powell2020-03-121-1/+0
| |
* | Move FindNickOnly to UserManager.Gravatar Sadie Powell2020-02-091-0/+12
| |
* | Move FindNick to UserManager.Gravatar Sadie Powell2020-02-091-0/+11
| |
* | Move FindUUID to the UserManager class.Gravatar Sadie Powell2020-02-091-0/+12
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-171-2/+9
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-111-2/+9
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-011-0/+1
|\|
| * Ignore clients on ulined servers when reporting stats in LUSERS.Gravatar Peter Powell2019-12-281-0/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-12-081-1/+14
|\|
| * Close connections when an I/O hook is configured but not loaded.Gravatar Peter Powell2019-11-161-1/+14
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-07-271-0/+10
|\|