| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix matching IP shuns. | 2023-06-29 | 1 | -1/+2 | |
| * | Retain the "real" username properly like we do for hostnames.•••This introduces the concept of a real username. This value comes from either the initial USER message or from an ident lookup. Doing this allows us to use it for bans through vidents and cloaking web client users using their remote username. While changing this I also changed all of the uses of "ident" other than RFC 1413 lookups and some compatibility cases to refer to usernames as user(name) instead of ident. Our use of ident in these places was incorrect as that only refers to the RFC 1413 response and is not commonly used in the way we used it by any other IRC server implementations. | 2023-06-29 | 2 | -2/+8 | |
| * | Make Numerics::CannotSendTo properly aware of extbans. | 2023-06-22 | 1 | -0/+4 | |
| * | Only regenerate cloaks if a cloak of that type exists.•••This prevents unnecessary recloaking which may result in spam. | 2023-06-07 | 1 | -0/+5 | |
| * | Fix some typos in the cloak header. | 2023-06-06 | 1 | -2/+2 | |
| * | Allow secondary cloak methods to be used on link synchronisation.•••If a server has a conditional cloak method (e.g. account) as the primary cloak method it doesn't make sense to use it for link consistency. With this change a secondary cloak method can request that it is used instead of the primary if the primary does not mark itself as link sensitive. | 2023-06-06 | 1 | -0/+9 | |
| * | Make XLine::Matches const. | 2023-06-05 | 1 | -2/+2 | |
| * | Make XLine::Displayable const. | 2023-06-05 | 1 | -1/+1 | |
| * | Merge branch 'insp3' into master. | 2023-05-16 | 1 | -2/+2 | |
| |\ | |||||
| | * | Fix some minor Doxygen issues. | 2023-05-16 | 1 | -2/+2 | |
| * | | Rename duration to timeutils and relocate InspIRCd::TimeString. | 2023-05-10 | 2 | -2/+4 | |
| * | | Fix the cloak modules on Clang and MSVC. | 2023-05-03 | 1 | -1/+1 | |
| * | | Add <cloak:class> to limit cloaks to a specific connect class. | 2023-05-02 | 1 | -1/+16 | |
| * | | Merge branch 'insp3' into master. | 2023-04-28 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update copyright headers. | 2023-04-28 | 1 | -1/+1 | |
| * | | Merge branch 'insp3' into master. | 2023-04-27 | 1 | -0/+19 | |
| |\| | |||||
| | * | Add client cert activation/expiration times to the ssl_cert class. | 2023-03-01 | 1 | -1/+26 | |
| * | | Sort opers alphabetically in `/STATS P`. | 2023-02-27 | 1 | -0/+1 | |
| * | | Make module classes specify their priority manually. | 2023-02-27 | 12 | -38/+38 | |
| * | | Allow modules to get/reset the cloak lists. | 2023-02-14 | 1 | -0/+38 | |
| * | | Merge branch 'insp3' into master. | 2023-02-14 | 1 | -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. | 2023-02-13 | 1 | -2/+2 | |
| | * | Silence a Valgrind warning in SSLIOHook.•••Closes #2011. | 2023-01-05 | 1 | -0/+1 | |
| * | | Add an option so local non-SSL users can be seen as securely connected. | 2023-02-11 | 1 | -0/+5 | |
| * | | Expose the removed away message in OnUserBack. | 2023-02-03 | 1 | -1/+2 | |
| * | | Move CheckExemption::Call to CheckExemption::EventProvider.•••Now FirstResult not a macro there's no need for this to be a free function. | 2023-01-25 | 1 | -15/+12 | |
| * | | Include more stuff in the Doxygen documentation. | 2023-01-24 | 1 | -1/+2 | |
| * | | Refactor the caching methods in User and rename to make more sense. | 2023-01-24 | 2 | -3/+3 | |
| * | | Replace InspIRCd::Format with fmt::format. | 2023-01-23 | 2 | -3/+3 | |
| * | | Move duration functions to their own header. | 2023-01-23 | 1 | -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. | 2023-01-18 | 1 | -1/+2 | |
| * | | Improve the output of /CLOAK when there are no methods available. | 2023-01-14 | 1 | -2/+2 | |
| * | | Fix a Doxygen comment typo in Cloak::Method. | 2023-01-14 | 1 | -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. | 2023-01-13 | 1 | -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 | 2023-01-13 | 1 | -1/+1 | |
| * | | Add the core of the new cloak implementation. | 2023-01-13 | 1 | -0/+142 | |
| * | | Qualify auto correctly in all cases. | 2023-01-10 | 1 | -1/+1 | |
| * | | Avoid copying shared_ptr<IOHookProvider> when not necessary. | 2023-01-10 | 1 | -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. | 2023-01-08 | 1 | -1/+1 | |
| * | | Add a helper class for creating a reference to a DNS manager. | 2023-01-05 | 1 | -0/+11 | |
| * | | Allow specifying milliseconds and a timespec in the server-time API. | 2023-01-04 | 1 | -3/+13 | |
| * | | Merge branch 'insp3' into master. | 2023-01-01 | 5 | -7/+4 | |
| |\| | |||||
| | * | Update copyright headers. | 2022-12-30 | 5 | -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. | 2022-12-10 | 1 | -2/+6 | |
| * | | Allow remapping mode and extban characters at load time.•••Closes #1970. | 2022-12-20 | 1 | -1/+1 | |
| * | | Move extension types to their own header to speed up build times. | 2022-12-19 | 1 | -0/+2 | |
| * | | More const correctness work. | 2022-12-08 | 1 | -3/+3 | |
| * | | Const correct the IRCv3 standard replies API. | 2022-12-06 | 1 | -3/+3 | |
| * | | Fix a missing doxygen parameter. | 2022-12-04 | 1 | -0/+1 | |
| * | | Avoid copying a shared_ptr where not actually necessary. | 2022-12-01 | 1 | -1/+1 | |
