| Commit message (Expand) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | Only show the WebIRC gateway name to unprivileged users. | 2021-04-11 | 1 | -2/+7 | ||
| * | | Clean up the ConvTo functions.•••- Add a default parameter to ConvToNum. - Use std::to_string for types that implement it. - Document the functions properly. | 2021-04-15 | 2 | -47/+56 | ||
| * | | Add an initializer_list constructor to the flat types. | 2021-04-14 | 2 | -19/+45 | ||
| * | | Remove some useless getter methods and make the members public.•••This isn't part of a public API so we don't need to care about exposing implementation details. | 2021-04-14 | 6 | -27/+13 | ||
| * | | Fix a compiler error in the gateway module. | 2021-04-12 | 1 | -2/+2 | ||
| * | | Fix an inverted condition in the previous commit. | 2021-04-12 | 1 | -2/+2 | ||
| * | | Move ssl_cert::GetMetaLine into the sslinfo module. | 2021-04-12 | 2 | -14/+17 | ||
| * | | Constify the members of ssl_cert. | 2021-04-12 | 1 | -10/+10 | ||
| * | | Rename the cgiirc module to gateway. | 2021-04-11 | 6 | -29/+25 | ||
| * | | Remove <cgiirc:opernotice>.•••This is no longer necessary now we have snomask privs. | 2021-04-11 | 2 | -25/+4 | ||
| * | | Merge branch 'insp3' into master. | 2021-04-11 | 2 | -19/+26 | ||
| |\| | ||||||
| | * | Allow banning WebIRC users by their gateway name.•••Closes #1857. | 2021-04-11 | 1 | -3/+15 | ||
| | * | Fix not parsing connect class hosts for inherited classes.•••This bug was introduced since the last release and only ever affected git versions built since commit 8c3c4f8e82. | 2021-04-08 | 1 | -0/+4 | ||
| | * | Show all prefix modes in the CHECK onchans output. | 2021-04-07 | 1 | -8/+1 | ||
| * | | Replace interfacebase with deleted operator new. | 2021-04-09 | 2 | -15/+3 | ||
| * | | Migrate IOHookProvider from reference<> to std::shared_ptr<>. | 2021-04-09 | 8 | -38/+37 | ||
| * | | Remove usecountbase from ExtensionItem and refer to using pointers.•••At one point (1.2?) this was actually useful but nowadays its not. | 2021-04-09 | 3 | -8/+7 | ||
| * | | Fix a dangling view in dccallow. | 2021-04-09 | 1 | -1/+1 | ||
| * | | Use string_view in IsCTCP. | 2021-04-08 | 10 | -23/+61 | ||
| * | | Take a string_view in irc::equals. | 2021-04-08 | 3 | -7/+14 | ||
| * | | Default to rehashing TLS certificates on rehash. | 2021-04-08 | 3 | -3/+20 | ||
| * | | Refer to encryption as TLS instead of SSL in all messages. | 2021-04-08 | 28 | -145/+144 | ||
| * | | Remove the remainders of genssl. | 2021-04-08 | 2 | -166/+0 | ||
| * | | Switch simple iterator loops to use range-based for loops. | 2021-04-07 | 147 | -1184/+804 | ||
| * | | Merge branch 'insp3' into master. | 2021-04-06 | 2 | -21/+32 | ||
| |\| | ||||||
| | * | Use IsCTCP in blockcolor for ignoring CTCPs. | 2021-04-06 | 1 | -3/+8 | ||
| | * | Automatically prune the history lists in chanhistory. | 2021-04-03 | 1 | -18/+24 | ||
| * | | Rewrite the COMMANDS handler•••- C++17ify - Fix the weird visibility logic. - Only show commands to opers that they can execute - Add a priv to show all commands regardless of access. - Use parameters instead of jamming everything into a <trailing>. - Use SplitCommand as the command is local-only. | 2021-04-06 | 2 | -33/+43 | ||
| * | | Constify their_param in ResolveModeConflict.•••There's no reason for this to be mutable. | 2021-04-06 | 5 | -7/+7 | ||
| * | | Fix core_dns failing to compile on GCC. | 2021-04-04 | 2 | -2/+3 | ||
| * | | Fix a ton of pedantic compiler warnings. | 2021-04-04 | 96 | -301/+247 | ||
| * | | Remove the unused ExitCodes array. | 2021-04-02 | 2 | -24/+0 | ||
| * | | Add support for syncing metadata set on memberships.•••No compat logic is required here as existing servers will just drop the unknown METADATA message when they can't find the target. | 2021-04-01 | 7 | -7/+76 | ||
| * | | Constify variables within loops. | 2021-04-01 | 50 | -66/+66 | ||
| * | | Implement support for random spamtrap channels in the LIST output. | 2021-04-01 | 2 | -1/+36 | ||
| * | | Refactor the securelist module.•••- General clean up of the module source to comply with our coding style. - Allow <securehost> tags to contain a user@ip mask as well as a user@host mask. - Default <securelist:exemptregistered> to on. | 2021-04-01 | 2 | -29/+38 | ||
| * | | Merge branch 'insp3' into master. | 2021-03-31 | 14 | -37/+25 | ||
| |\| | ||||||
| | * | Add support for per-DNSBL timeouts.•••This should fix the issue of some DNSBLs being slower than others. | 2021-03-31 | 3 | -3/+7 | ||
| | * | Fix various documentation comments. | 2021-03-31 | 12 | -36/+18 | ||
| * | | Stop asking if users want to generate a self-signed certificate.•••Users should be using real certificates in 2021. | 2021-03-30 | 2 | -27/+1 | ||
| * | | Convert SQL::Field to be a typedef of optional<string>. | 2021-03-30 | 6 | -41/+10 | ||
| * | | Stop installing inspircd-genssl and delete the now useless manpage.•••Hopefully this pushes people towards using real certificates instead of self-signed certificates. | 2021-03-30 | 2 | -50/+0 | ||
| * | | Use emplace_back where possible. | 2021-03-30 | 17 | -28/+28 | ||
| * | | Fix the setter and set time of list modes being lost on netburst.•••Closes #1812. | 2021-03-30 | 7 | -11/+129 | ||
| * | | Fix a compiler warning caused by an unused variable. | 2021-03-30 | 1 | -3/+0 | ||
| * | | Convert various mode methods to take Mode::Change.•••- AccessCheck - AfterMode - BeforeMode - OnModeChange - OnRawMode | 2021-03-30 | 32 | -201/+206 | ||
| * | | Remove multi-line FJOIN and FMODE logic.•••This only existed for 1202 protocol compatibility. As of 1205 the line length has been removed. | 2021-03-30 | 3 | -68/+11 | ||
| * | | Add the ~ server tag prefix.•••This is used for sending arbitrarily tagged messages between servers. | 2021-03-30 | 4 | -0/+32 | ||
| * | | Merge branch 'insp3' into master. | 2021-03-30 | 11 | -77/+140 | ||
| |\| | ||||||
| | * | Add support for matching multiple hosts in <connect:{allow,deny}>. | 2021-03-30 | 3 | -9/+23 | ||
