| Commit message (Expand) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | | Extract the logic for tags that need message-tags to its own type. | 2022-11-29 | 4 | -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. | 2022-11-29 | 2 | -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. | 2022-11-28 | 18 | -101/+69 | ||
| * | | Merge branch 'insp3' into master. | 2022-11-24 | 2 | -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. | 2022-11-23 | 1 | -3/+5 | ||
| * | | Use string_view in IsNick/IsIdent/IsChannel. | 2022-11-21 | 2 | -8/+8 | ||
| * | | Add a typedef for sa_family_t on Windows. | 2022-11-16 | 2 | -4/+4 | ||
| * | | Merge branch 'insp3' into master. | 2022-11-16 | 4 | -4/+37 | ||
| |\| | ||||||
| | * | The extended-monitor spec has been ratified now. | 2022-11-02 | 1 | -1/+1 | ||
| | * | Add support for the IRCv3 extended-monitor specification.•••Co-authored-by: Sadie Powell <sadie@witchery.services> | 2022-11-02 | 4 | -6/+40 | ||
| * | | Clean up the typedefs for OnBuildNeighborList. | 2022-10-29 | 4 | -9/+9 | ||
| * | | Merge branch 'insp3' into master. | 2022-10-29 | 2 | -6/+22 | ||
| |\| | ||||||
| | * | Allow using sts over a proxied hook like HAProxy.•••Closes #1911. | 2022-10-24 | 1 | -1/+13 | ||
| | * | Only store the topic in the permchannels database if one is set. | 2022-10-23 | 1 | -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. | 2022-10-29 | 13 | -23/+21 | ||
| * | | Use User::IsFullyConnected instead of checking for REG_ALL. | 2022-10-29 | 16 | -24/+24 | ||
| * | | Allow UserManager::Find{Nick,UUID,} to ignore unregistered users. | 2022-10-29 | 20 | -62/+47 | ||
| * | | More const correctness. | 2022-10-23 | 11 | -11/+11 | ||
| * | | Avoid spamming opers with notices when a SQL log provider is down. | 2022-10-22 | 1 | -1/+7 | ||
| * | | Assign more class members inline instead of in the constructor. | 2022-10-21 | 5 | -20/+10 | ||
| * | | Fix building the account module on Clang. | 2022-10-18 | 1 | -1/+1 | ||
| * | | Allow requiring users to be logged into their nick for requireaccount. | 2022-10-18 | 1 | -3/+15 | ||
| * | | Handle renamed modules when building compat link data. | 2022-10-18 | 1 | -0/+6 | ||
| * | | Rename the services_account module to account. | 2022-10-18 | 3 | -8/+7 | ||
| * | | Split out channel and user mode +r into a separate module. | 2022-10-18 | 2 | -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. | 2022-10-18 | 1 | -8/+62 | ||
| * | | Remove is_registered in services_account.•••The account can never be an empty string so this check is useless. | 2022-10-16 | 1 | -7/+3 | ||
| * | | Refactor the DNS resolvers in the spanningtree module. | 2022-10-16 | 3 | -45/+32 | ||
| * | | Fix various inappropriate uses of UINT_MAX. | 2022-10-14 | 2 | -2/+2 | ||
| * | | Merge branch 'insp3' into master. | 2022-10-13 | 5 | -24/+81 | ||
| |\| | ||||||
| | * | Add the inspircd.org/echo tag to echo message responses. | 2022-10-12 | 1 | -4/+37 | ||
| | * | Fix channels with +D or +u set being picked for the /WHO response. | 2022-10-12 | 2 | -0/+20 | ||
| | * | Allow modules to control the visible channel in a WHO request. | 2022-10-12 | 1 | -21/+29 | ||
| | * | Prevent having the dccallow module loaded with a zero list size.•••This doesn't make sense. | 2022-10-10 | 1 | -1/+1 | ||
| * | | Remove some unused method arguments. | 2022-10-12 | 2 | -5/+5 | ||
| * | | Avoid file_cache in opermotd and showfile. | 2022-10-12 | 2 | -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. | 2022-10-11 | 1 | -5/+6 | ||
| * | | Rename User::age to User::nickchanged and fix the docs. | 2022-10-11 | 8 | -20/+20 | ||
| * | | Fix serializing attributes in httpd_stats. | 2022-10-10 | 1 | -2/+5 | ||
| * | | Rename user_hash to UserMap and move to usermanager. | 2022-10-07 | 2 | -3/+3 | ||
| * | | Fix the indentation of various modules. | 2022-10-05 | 4 | -130/+130 | ||
| * | | Replace foo.erase(foo.{size|end}()-1) with foo.pop_back(). | 2022-10-01 | 5 | -5/+5 | ||
| * | | Replace *foo.rbegin() with foo.end(). | 2022-10-01 | 3 | -4/+3 | ||
| * | | Merge branch 'insp3' into master. | 2022-10-01 | 1 | -0/+6 | ||
| |\| | ||||||
| | * | Drop attempts to send a tag message to a server. | 2022-09-24 | 1 | -0/+6 | ||
| * | | Enforce <hostname:charmap> network-wide on the 1206 protocol. | 2022-09-30 | 3 | -0/+21 | ||
| * | | Prevent allowing weird characters within hostnames. | 2022-09-30 | 3 | -6/+24 | ||
| * | | Use a global typedef for representing a character set. | 2022-09-30 | 7 | -11/+9 | ||
| * | | Use auto instead of type names where the type is obvious. | 2022-09-29 | 59 | -79/+79 | ||
| * | | Fix various cases of the &* being next to the name instead of type. | 2022-09-29 | 57 | -132/+132 | ||
