| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Merge branch 'insp4' into master. | 2026-05-31 | 1 | -4/+4 | |
| |\ | |||||
| | * | Allow omitting an extban character by default.•••Character extbans are deprecated anyway and this makes it easier for modules to opt-out of providing one. | 2026-05-30 | 1 | -4/+4 | |
| * | | Make the TLS API const. | 2026-05-18 | 1 | -5/+5 | |
| * | | Migrate the httpd module from http_parser to llhttp/yuarel.•••The http_parser library is eol and we've been using a Debian fork with security patches but its time to move on. | 2026-05-13 | 1 | -0/+5 | |
| * | | Remove the remaining function in utility/string to utility/container. | 2026-04-30 | 1 | -1/+0 | |
| * | | Switch ascii comparisons over to our own casemap functions. | 2026-04-30 | 1 | -1/+1 | |
| * | | Pass a server reference to OnRouteMessage. | 2026-04-04 | 1 | -1/+1 | |
| * | | Stop using a second extensible for no-tls-cert. | 2026-04-04 | 1 | -1/+1 | |
| * | | Fix some missing comments. | 2026-04-04 | 1 | -0/+5 | |
| * | | Fix determining if a TLS certificate is usable. | 2026-04-04 | 1 | -1/+1 | |
| * | | Remove the old SSL API. | 2026-04-03 | 1 | -311/+0 | |
| * | | Add the new TLS API. | 2026-04-03 | 1 | -0/+259 | |
| * | | Abolish SSLIOHookProvider now it doesn't do anything special. | 2026-04-03 | 1 | -11/+0 | |
| * | | Move a function only used by ssl_openssl into that module. | 2026-04-03 | 1 | -25/+0 | |
| * | | Remove the hook type field from IOHookProvider.•••This is only used by SSL hooks and now services have been reworked we can just check for a ssl/ prefix. | 2026-04-03 | 1 | -2/+2 | |
| * | | Merge branch 'insp4' into master. | 2026-03-31 | 2 | -2/+2 | |
| |\| | |||||
| | * | Update copyright headers. | 2026-03-31 | 2 | -2/+2 | |
| * | | Fix various minor Doxygen issues. | 2026-03-29 | 1 | -0/+1 | |
| * | | Move service types to their own namespace.•••- ServiceProvider is now Service::Provider - DataProvider is now Service::SimpleProvider (the old name does not really make sense now we don't have SERVICE_DATA and the only difference is automatic registration. - Some members of ModuleManager have been elevated to the Service namespace in case other code wants to use them. | 2026-03-29 | 17 | -46/+48 | |
| * | | Avoid the direct use of intptr_t wherever possible.•••This may cause problems on systems like CheriBSD where the pointer type stores extra data. | 2026-03-29 | 2 | -6/+8 | |
| * | | Switch modules from reference<> to shared_ptr<> and weak_ptr<>. | 2026-03-29 | 29 | -87/+87 | |
| * | | Switch the extensible system to using shared pointers. | 2026-03-27 | 3 | -10/+10 | |
| * | | Move CUList to be declared inside User. | 2026-03-26 | 1 | -1/+1 | |
| * | | Switch typedefs to using statements. | 2026-03-26 | 10 | -18/+18 | |
| * | | Use server tracking from the services module in the sasl module. | 2026-03-25 | 1 | -0/+3 | |
| * | | Move some remaining channel settings to <channels>. | 2026-03-19 | 1 | -1/+1 | |
| * | | Rewrite sepstream and move to stringutils. | 2026-03-14 | 1 | -1/+3 | |
| * | | Clean up the casemapping checking and comparison code. | 2026-03-13 | 5 | -5/+5 | |
| * | | Rework sending server protocol messages.•••- Replace CmdBuilder with MessageBuilder. This has a less footgun API. All message building has to go through this now so we can implement other message formats in the future. - Replace the message parsing in WriteLine with an analogue to PreProcessOldProtocolMessage. This should be much faster. - Move parameter translation from the core to spanningtree. - Change EncodeParameter to return the value instead of updating in place. - Replace the OnBuild*Message events with one OnServerMessage that can now access all parts of the message and change them. | 2026-03-12 | 1 | -10/+3 | |
| * | | Mark all acting extbans as MATCH_REQUIRE_CHANNEL.•••This removes the need for special behaviour in the silence module. | 2026-03-09 | 1 | -1/+1 | |
| * | | Make the ban checking functions able to check any list mode. | 2026-03-08 | 1 | -8/+10 | |
| * | | Fix various minor Doxygen issues. | 2026-03-08 | 4 | -7/+8 | |
| * | | Merge branch 'insp4' into master. | 2026-03-08 | 1 | -1/+1 | |
| |\| | |||||
| | * | Fix some minor doxygen warnings. | 2026-03-08 | 1 | -1/+1 | |
| * | | Replace IS_* with member functions.•••- All user types get an Is* function. - Only local users are cast using the old function so only local users get an As* function. | 2026-03-08 | 1 | -1/+1 | |
| * | | Add support for per-operator isupport. | 2026-03-06 | 1 | -0/+1 | |
| * | | Merge branch 'insp4' into master. | 2026-03-06 | 1 | -3/+2 | |
| |\| | |||||
| | * | Remove the inverted parameter from the extban validation method. | 2026-03-06 | 1 | -3/+2 | |
| * | | Merge branch 'insp4' into master. | 2026-03-06 | 1 | -0/+37 | |
| |\| | |||||
| | * | Add a validation hook for extbans. | 2026-03-04 | 1 | -0/+37 | |
| * | | Allow writing a Reply object to a user. | 2026-03-06 | 1 | -7/+13 | |
| * | | Get rid of the ModuleRef typedef.•••Eventually this will be moved to shared_ptr but for now the typedef is just hiding the constness of the reference. | 2026-03-04 | 2 | -2/+2 | |
| * | | Rename ServiceProvider::creator to service_creator and add GetSource. | 2026-03-02 | 2 | -3/+3 | |
| * | | Massive rework of how internal service providers work.•••- ServiceType is dead. All modules use RegisterService now. - Modules can implement UnregisterService which is called from DelService now. - Split the service type prefix into its own field. - Renamed Service::name to Service::service_name. This revealed a few bugs. | 2026-03-02 | 7 | -36/+33 | |
| * | | Move the event/ prefix of events to the parent class. | 2026-03-02 | 15 | -25/+25 | |
| * | | Rename ServiceProvider methods to avoid shadowing issues. | 2026-03-02 | 6 | -7/+7 | |
| * | | Move standard replies to the core and add remote reply support. | 2026-03-01 | 2 | -171/+35 | |
| * | | Merge branch 'insp4' into master. | 2026-02-26 | 1 | -1/+1 | |
| |\| | |||||
| | * | Fix mistakenly getting monitor notifications for partially connected users. | 2026-02-23 | 1 | -1/+1 | |
| * | | Allow the use of extended bans in more scenarios. | 2026-01-05 | 1 | -17/+53 | |
