aboutsummaryrefslogtreecommitdiff
path: root/include/modules
Commit message (Expand)AuthorAgeFilesLines
* Rename duration to timeutils and relocate InspIRCd::TimeString.Gravatar Sadie Powell2023-05-102-2/+4
* Fix the cloak modules on Clang and MSVC.Gravatar Sadie Powell2023-05-031-1/+1
* Add <cloak:class> to limit cloaks to a specific connect class.Gravatar Sadie Powell2023-05-021-1/+16
* Merge branch 'insp3' into master.Gravatar Sadie Powell2023-04-281-1/+1
|\
| * Update copyright headers.Gravatar InspIRCd Robot2023-04-281-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-04-271-0/+19
|\|
| * Add client cert activation/expiration times to the ssl_cert class.Gravatar Sadie Powell2023-03-011-1/+26
* | Sort opers alphabetically in `/STATS P`.Gravatar Sadie Powell2023-02-271-0/+1
* | Make module classes specify their priority manually.Gravatar Sadie Powell2023-02-2712-38/+38
* | Allow modules to get/reset the cloak lists.Gravatar Sadie Powell2023-02-141-0/+38
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-02-141-2/+2
|\|
| * Switch to the IRCv3 standard-replies cap.•••Nothing is using this so far so I'm not counting it as a breaking change. Gravatar Sadie Powell2023-02-131-2/+2
| * Silence a Valgrind warning in SSLIOHook.•••Closes #2011. Gravatar Sadie Powell2023-01-051-0/+1
* | Add an option so local non-SSL users can be seen as securely connected.Gravatar Sadie Powell2023-02-111-0/+5
* | Expose the removed away message in OnUserBack.Gravatar Sadie Powell2023-02-031-1/+2
* | Move CheckExemption::Call to CheckExemption::EventProvider.•••Now FirstResult not a macro there's no need for this to be a free function. Gravatar Sadie Powell2023-01-251-15/+12
* | Include more stuff in the Doxygen documentation.Gravatar Sadie Powell2023-01-241-1/+2
* | Refactor the caching methods in User and rename to make more sense.Gravatar Sadie Powell2023-01-242-3/+3
* | Replace InspIRCd::Format with fmt::format.Gravatar Sadie Powell2023-01-232-3/+3
* | Move duration functions to their own header.Gravatar Sadie Powell2023-01-231-1/+3
* | Fix Cloak::Method and Log::Method being needlessly Cullable.•••If a method needs to be cullable it can inherit from that type and pass Cullable::Deleter as a custom deleter to the shared_ptr. Gravatar Sadie Powell2023-01-181-1/+2
* | Improve the output of /CLOAK when there are no methods available.Gravatar Sadie Powell2023-01-141-2/+2
* | Fix a Doxygen comment typo in Cloak::Method.Gravatar Sadie Powell2023-01-141-1/+1
* | Various improvements to the cloak system.•••- Only rewrite cloak => cloaking if the cloak_md5 module is also loaded. - Include the cloak method in the link data. - If 1206 servers are using different cloak methods then ignore the other data when telling operators about the link failure. - Clean up the code in a few places. Gravatar Sadie Powell2023-01-131-0/+6
* | Add a new cloak system that cloaks using HMAC-SHA256.•••Closes #1107. The core of the cloaking algorithm this uses is heavily inspired by the Plexus4 cloak_hmac_sha256 module written by Adam. I've made a few changes to the rest of it to work more like the old InspIRCd cloaking system as well as adding the option for configuring the case of the character table used for cloaking. Co-authored-by: Adam <Adam@anope.org> Co-authored-year: 2017 Gravatar Sadie Powell2023-01-131-1/+1
* | Add the core of the new cloak implementation.Gravatar Sadie Powell2023-01-131-0/+142
* | Qualify auto correctly in all cases.Gravatar Sadie Powell2023-01-101-1/+1
* | Avoid copying shared_ptr<IOHookProvider> when not necessary.Gravatar Sadie Powell2023-01-101-1/+1
* | Rework how users are assigned to connect classes.•••- 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. Gravatar Sadie Powell2023-01-081-1/+1
* | Add a helper class for creating a reference to a DNS manager.Gravatar Sadie Powell2023-01-051-0/+11
* | Allow specifying milliseconds and a timespec in the server-time API.Gravatar Sadie Powell2023-01-041-3/+13
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-01-015-7/+4
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2022-12-305-7/+4
| * Fix building with the Intel C++ compiler.•••- Fix adding -Wshadow in the compiler flags twice. - Detect the new Clang-based Intel compiler as well as the old one. - Silence some deprecation warnings using Intel syntax. Gravatar Sadie Powell2022-12-101-2/+6
* | Allow remapping mode and extban characters at load time.•••Closes #1970. Gravatar Sadie Powell2022-12-201-1/+1
* | Move extension types to their own header to speed up build times.Gravatar Sadie Powell2022-12-191-0/+2
* | More const correctness work.Gravatar Sadie Powell2022-12-081-3/+3
* | Const correct the IRCv3 standard replies API.Gravatar Sadie Powell2022-12-061-3/+3
* | Fix a missing doxygen parameter.Gravatar Sadie Powell2022-12-041-0/+1
* | Avoid copying a shared_ptr where not actually necessary.Gravatar Sadie Powell2022-12-011-1/+1
* | Yet more stylistic fixes.Gravatar Sadie Powell2022-12-015-16/+25
* | Allow attaching tags with extra info to stats rows.•••Stats responses are incredibly non-standard and no clients render them correctly. This makes using /STATS a massive pain in the ass for users. However, now we have message tags we have a way to fix this. We can send a <trailing> with the message details and for clients (probably bots) that need to parse the response we can include the specific details in message tags enabled by the new inspircd.org/stats-tags capability. The average user will get this: :<server> 210 <nick> <stats-char> :<stats-message> If however they enable the newcapability they will get this instead: @inspircd.org/stats-foo=bar;inspircd.org/stats-baz=bax :<server> 210 <nick> <stats-char> :<stats-message> Gravatar Sadie Powell2022-11-301-6/+41
* | Use `T&&` instead of `T` or `const T&`.Gravatar Sadie Powell2022-11-292-3/+3
* | Extract the logic for tags that need message-tags to its own type.Gravatar Sadie Powell2022-11-291-0/+24
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-11-241-2/+2
|\|
| * Add a workaround for the replies API not working with a cap reference.•••A Cap::Reference can not be cast to a Cap::Capability& because it may not be available and that would create a null reference. In v4 we can change the API to take a Cap::Capability* but for now this is the best we can do. Gravatar Sadie Powell2022-11-241-0/+47
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-11-161-0/+92
|\|
| * Add support for the IRCv3 extended-monitor specification.•••Co-authored-by: Sadie Powell <sadie@witchery.services>Gravatar delthas2022-11-021-0/+92
* | Fix some types which were missed when making stuff final.Gravatar Sadie Powell2022-10-302-3/+3
* | 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-292-2/+2