aboutsummaryrefslogtreecommitdiff
path: root/include/modules
Commit message (Expand)AuthorAgeFilesLines
* Update all usages of ProtocolServer to use Server.Gravatar Sadie Powell2024-07-241-3/+3
* Unregister extbans when the providing module is unloaded.Gravatar Sadie Powell2024-07-061-0/+5
* Update copyright headers.Gravatar InspIRCd Robot2024-06-212-2/+2
* Update copyright headers.Gravatar InspIRCd Robot2024-06-141-1/+1
* Update Doxygen config and fix some warnings.Gravatar Sadie Powell2024-06-111-1/+2
* Remove an extraneous semicolon in the SQL module header.Gravatar Sadie Powell2024-06-071-1/+1
* Update copyright headers.Gravatar InspIRCd Robot2024-06-0729-30/+31
* Allow mutating the status message type in OnUserPre(Tag)Message.Gravatar Sadie Powell2024-05-061-1/+1
* Rename OnBroadcastMessage to OnRouteMessage.•••This is more descriptive of what it actually does. Gravatar Sadie Powell2024-03-081-19/+20
* Rework SQL::PopulateUserInfo.Gravatar Sadie Powell2024-02-191-10/+18
* Allow using multiple SSL fingerprint algorithms.•••Closes #1804. Gravatar Sadie Powell2024-02-191-8/+29
* Split ExtBan::Acting from ExtBan::ActingBase.Gravatar Sadie Powell2024-02-151-5/+23
* Fix a nonsense comment in the cloak API header.Gravatar Sadie Powell2023-09-211-1/+1
* Move TokenList back to its own header and move INSP_FORMAT to compat.•••This allows making stringutils an optional header given that most of it is not used by most of the codebase. Gravatar Sadie Powell2023-09-031-0/+2
* Don't include "regex/" in the link data of the filter/rline modules.Gravatar Sadie Powell2023-08-181-0/+6
* Fix list modes unintentionally being case sensitive.•••Closes #907. Gravatar Sadie Powell2023-08-121-0/+26
* Rework how away state is stored internally.•••This will be necessary for implementing pre-away as well as some changes for WATCH compatibility with Unreal. Gravatar Sadie Powell2023-08-041-3/+4
* Fix a minor Doxygen comment issue.Gravatar Sadie Powell2023-07-031-1/+1
* Fix shun matching (again) and document what the matches do.Gravatar Sadie Powell2023-07-031-3/+6
* Fix matching IP shuns.Gravatar Sadie Powell2023-06-291-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. Gravatar Sadie Powell2023-06-292-2/+8
* Make Numerics::CannotSendTo properly aware of extbans.Gravatar Sadie Powell2023-06-221-0/+4
* Only regenerate cloaks if a cloak of that type exists.•••This prevents unnecessary recloaking which may result in spam. Gravatar Sadie Powell2023-06-071-0/+5
* Fix some typos in the cloak header.Gravatar Sadie Powell2023-06-061-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. Gravatar Sadie Powell2023-06-061-0/+9
* Make XLine::Matches const.Gravatar Sadie Powell2023-06-051-2/+2
* Make XLine::Displayable const.Gravatar Sadie Powell2023-06-051-1/+1
* Merge branch 'insp3' into master.Gravatar Sadie Powell2023-05-161-2/+2
|\
| * Fix some minor Doxygen issues.Gravatar Sadie Powell2023-05-161-2/+2
* | 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