aboutsummaryrefslogtreecommitdiff
path: root/src/modules
Commit message (Expand)AuthorAgeFilesLines
* Avoid copying a shared_ptr where not actually necessary.Gravatar Sadie Powell2022-12-016-6/+6
* Yet more stylistic fixes.Gravatar Sadie Powell2022-12-0164-136/+309
* Merge branch 'insp3' into master.Gravatar Sadie Powell2022-11-301-4/+2
|\
| * Use gnutls_digest_get_id if supported by the GnuTLS library.Gravatar Sadie Powell2022-11-291-1/+4
| * Fix asserting when building against libstdc++ in debug mode.•••This code was safe as the pointer was never actually dereferenced but libstdc++ would assert on it anyway. Gravatar Sadie Powell2022-11-281-1/+1
* | Extract the logic for tags that need message-tags to its own type.Gravatar Sadie Powell2022-11-294-33/+7
* | Move the oper statistics to core_oper and rewrite.•••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. Gravatar Sadie Powell2022-11-292-46/+20
* | Refactor the internals of the oper system.•••- 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. Gravatar Sadie Powell2022-11-2818-101/+69
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-11-242-5/+7
|\|
| * Allow silence flag metadata to contain unknown flags.•••This prevents breaking link compatibility if we ever add more silence flags in the future. Gravatar Sadie Powell2022-11-231-3/+5
* | Use string_view in IsNick/IsIdent/IsChannel.Gravatar Sadie Powell2022-11-212-8/+8
* | Add a typedef for sa_family_t on Windows.Gravatar Sadie Powell2022-11-162-4/+4
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-11-164-4/+37
|\|
| * The extended-monitor spec has been ratified now.Gravatar Sadie Powell2022-11-021-1/+1
| * Add support for the IRCv3 extended-monitor specification.•••Co-authored-by: Sadie Powell <sadie@witchery.services>Gravatar delthas2022-11-024-6/+40
* | Clean up the typedefs for OnBuildNeighborList.Gravatar Sadie Powell2022-10-294-9/+9
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-10-292-6/+22
|\|
| * Allow using sts over a proxied hook like HAProxy.•••Closes #1911. Gravatar Sadie Powell2022-10-241-1/+13
| * Only store the topic in the permchannels database if one is set.Gravatar Sadie Powell2022-10-231-5/+9
* | 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-2913-23/+21
* | Use User::IsFullyConnected instead of checking for REG_ALL.Gravatar Sadie Powell2022-10-2916-24/+24
* | Allow UserManager::Find{Nick,UUID,} to ignore unregistered users.Gravatar Sadie Powell2022-10-2920-62/+47
* | More const correctness.Gravatar Sadie Powell2022-10-2311-11/+11
* | Avoid spamming opers with notices when a SQL log provider is down.Gravatar Sadie Powell2022-10-221-1/+7
* | Assign more class members inline instead of in the constructor.Gravatar Sadie Powell2022-10-215-20/+10
* | Fix building the account module on Clang.Gravatar Sadie Powell2022-10-181-1/+1
* | Allow requiring users to be logged into their nick for requireaccount.Gravatar Sadie Powell2022-10-181-3/+15
* | Handle renamed modules when building compat link data.Gravatar Sadie Powell2022-10-181-0/+6
* | Rename the services_account module to account.Gravatar Sadie Powell2022-10-183-8/+7
* | Split out channel and user mode +r into a separate module.Gravatar Sadie Powell2022-10-182-58/+94
* | Add the accountnicks metadata as a replacement for user mode +r.•••This isn't used much currently but in the future will allow doing a lot of behaviour which is currently implemented in services in the IRCd instead e.g. killing ghost clients, nickname enforcement. Gravatar Sadie Powell2022-10-181-8/+62
* | Remove is_registered in services_account.•••The account can never be an empty string so this check is useless. Gravatar Sadie Powell2022-10-161-7/+3
* | Refactor the DNS resolvers in the spanningtree module.Gravatar Sadie Powell2022-10-163-45/+32
* | Fix various inappropriate uses of UINT_MAX.Gravatar Sadie Powell2022-10-142-2/+2
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-10-135-24/+81
|\|
| * Add the inspircd.org/echo tag to echo message responses.Gravatar Sadie Powell2022-10-121-4/+37
| * Fix channels with +D or +u set being picked for the /WHO response.Gravatar Sadie Powell2022-10-122-0/+20
| * Allow modules to control the visible channel in a WHO request.Gravatar Sadie Powell2022-10-121-21/+29
| * Prevent having the dccallow module loaded with a zero list size.•••This doesn't make sense. Gravatar Sadie Powell2022-10-101-1/+1
* | Remove some unused method arguments.Gravatar Sadie Powell2022-10-122-5/+5
* | Avoid file_cache in opermotd and showfile.Gravatar Sadie Powell2022-10-122-2/+2
* | Switch the ssl_mbedtls module to use ifstream instead of FileReader.•••Using FileReader here is problematic because it means that certs can't be reloaded without a full rehash. Gravatar Sadie Powell2022-10-111-5/+6
* | Rename User::age to User::nickchanged and fix the docs.Gravatar Sadie Powell2022-10-118-20/+20
* | Fix serializing attributes in httpd_stats.Gravatar Sadie Powell2022-10-101-2/+5
* | Rename user_hash to UserMap and move to usermanager.Gravatar Sadie Powell2022-10-072-3/+3
* | Fix the indentation of various modules.Gravatar Sadie Powell2022-10-054-130/+130
* | Replace foo.erase(foo.{size|end}()-1) with foo.pop_back().Gravatar Sadie Powell2022-10-015-5/+5
* | Replace *foo.rbegin() with foo.end().Gravatar Sadie Powell2022-10-013-4/+3
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-10-011-0/+6
|\|
| * Drop attempts to send a tag message to a server.Gravatar Sadie Powell2022-09-241-0/+6