| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Rename DLL_EXTENSION to INSPIRCD_MODULE_EXT. | 2026-04-07 | 1 | -5/+5 | |
| | | | | | | This will be in config.h when we switch to CMake so I'm renaming it now to reduce the diff size of the CMake commit. | ||||
| * | Define NDEBUG when not building in debug mode. | 2026-04-06 | 1 | -4/+4 | |
| | | |||||
| * | Add insp::find_value, insp::to_ptr and switch code to use them. | 2026-04-04 | 1 | -4/+1 | |
| | | |||||
| * | Remove the remaining bits of stdalgo to utility/container. | 2026-04-04 | 1 | -1/+1 | |
| | | |||||
| * | Rename utility/map to container and prefix the difference method. | 2026-04-04 | 1 | -2/+2 | |
| | | |||||
| * | Merge branch 'insp4' into master. | 2026-03-31 | 1 | -1/+1 | |
| |\ | |||||
| | * | Update copyright headers. | 2026-03-31 | 1 | -1/+1 | |
| | | | |||||
| | * | Backport the fix of copying dynamic references from git master. | 2026-03-17 | 1 | -0/+6 | |
| | | | |||||
| * | | Move dynref code to be alongside the service code. | 2026-03-29 | 1 | -83/+0 | |
| | | | |||||
| * | | Move service types to their own namespace. | 2026-03-29 | 1 | -64/+10 | |
| | | | | | | | | | | | | | | | | | | | | | | | - 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. | ||||
| * | | Move some functions from stdalgo to utility/pointer. | 2026-03-29 | 1 | -1/+1 | |
| | | | |||||
| * | | Switch modules from reference<> to shared_ptr<> and weak_ptr<>. | 2026-03-29 | 1 | -36/+49 | |
| | | | |||||
| * | | Move CUList to be declared inside User. | 2026-03-26 | 1 | -4/+4 | |
| | | | |||||
| * | | Fix a minor crash on shut down after copying a dynamic reference. | 2026-03-15 | 1 | -0/+6 | |
| | | | |||||
| * | | Clean up the casemapping checking and comparison code. | 2026-03-13 | 1 | -1/+1 | |
| | | | |||||
| * | | Move <options:defaultmodes> to <channels> and rework. | 2026-03-12 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | - The default prefix modes are now separate from the default channel modes. This should result in less accidentally broken configs. - The privs are now pre-parsed to a list of mode references. This should improve performance slightly as the repeated mode lookups are gone. It also allows us to write warnings to the debug log when the default privs are invalid. - Channels can now have a default topic. | ||||
| * | | Merge branch 'insp4' into master. | 2026-03-09 | 1 | -3/+4 | |
| |\| | |||||
| | * | Add the VF_DEPRECATED flag and warn on load about deprecation. | 2026-03-09 | 1 | -3/+4 | |
| | | | |||||
| * | | Make the ban checking functions able to check any list mode. | 2026-03-08 | 1 | -2/+2 | |
| | | | |||||
| * | | Add the old connect class to OnPostChangeConnectClass. | 2026-03-06 | 1 | -1/+1 | |
| | | | |||||
| * | | Only reset the specific type of reference when adding services. | 2026-03-04 | 1 | -3/+6 | |
| | | | |||||
| * | | Clean up ModuleManager somewhat. | 2026-03-04 | 1 | -10/+10 | |
| | | | |||||
| * | | Add support for strict references and switch some stuff to use them. | 2026-03-03 | 1 | -13/+18 | |
| | | | |||||
| * | | Disable service registration messages when not using a debug build. | 2026-03-02 | 1 | -0/+12 | |
| | | | |||||
| * | | Rename ServiceProvider::creator to service_creator and add GetSource. | 2026-03-02 | 1 | -5/+12 | |
| | | | |||||
| * | | Massive rework of how internal service providers work. | 2026-03-02 | 1 | -87/+58 | |
| | | | | | | | | | | | | | | | | | | | - 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. | ||||
| * | | Rename ServiceProvider methods to avoid shadowing issues. | 2026-03-02 | 1 | -18/+18 | |
| | | | |||||
| * | | Merge branch 'insp4' into master. | 2026-01-04 | 1 | -0/+8 | |
| |\| | |||||
| | * | Allow specifying a module name in SetPriority. | 2025-12-31 | 1 | -0/+8 | |
| | | | |||||
| * | | Add <security:banrealmask>. | 2025-04-16 | 1 | -2/+2 | |
| | | | |||||
| * | | Delete the old hashing interface and modules. | 2025-04-06 | 1 | -1/+0 | |
| | | | |||||
| * | | Replace stalgo::erase with C++20 std::erase. | 2024-08-25 | 1 | -2/+2 | |
| | | | |||||
| * | | Remove support for the v3 server protocol. | 2024-07-23 | 1 | -3/+2 | |
| |/ | |||||
| * | Revert module flags to the way they worked in v3. | 2024-07-22 | 1 | -1/+1 | |
| | | |||||
| * | Allow contrib modules to specify their own module version. | 2024-07-22 | 1 | -0/+15 | |
| | | |||||
| * | Update copyright headers. | 2024-06-21 | 1 | -1/+1 | |
| | | |||||
| * | Update copyright headers. | 2024-06-07 | 1 | -4/+2 | |
| | | |||||
| * | Allow mutating the status message type in OnUserPre(Tag)Message. | 2024-05-06 | 1 | -1/+1 | |
| | | |||||
| * | Rename some of the Module member variables. | 2024-03-04 | 1 | -9/+9 | |
| | | |||||
| * | Rename the error log level to critical. | 2023-08-11 | 1 | -3/+3 | |
| | | | | | | "ERROR" is apparently defined by more than just Windows. Let's pick a different name which is less likely to cause collisions. | ||||
| * | Simplify the codes that InspIRCd can exit with. | 2023-07-13 | 1 | -5/+4 | |
| | | | | | | | | The custom codes that InspIRCd exits with are not very useful and can confuse init systems like systemd which assume that certain exit codes mean certain things. INSPIRCD_BINARY_EXIT was a workaround for this in v3 but considering thatsers have to check the logs anyway so we may as well just use EXIT_SUCCESS and EXIT_FAILURE. | ||||
| * | Remove rang and use fmtlib for printing coloured messages. | 2023-07-12 | 1 | -7/+11 | |
| | | | | | | | | | | This supports more platforms (e.g. Haiku) and is actually still maintained unlike the former. All of this code should really be cleaned up for release (maybe by adding something like Anope's LOG_CONSOLE) but for now I've just replaced it with the fmtlib equivalent. | ||||
| * | Avoid culling DLLManager instances twice. | 2023-07-05 | 1 | -0/+3 | |
| | | |||||
| * | Remove OnPreChange{Host,RealName} events and deboolify methods. | 2023-06-29 | 1 | -2/+0 | |
| | | | | | These have not ever been used as far as I can see. | ||||
| * | Retain the "real" username properly like we do for hostnames. | 2023-06-29 | 1 | -1/+3 | |
| | | | | | | | | | | | | | | | 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. | ||||
| * | Fix casing of metadata in function and event names. | 2023-05-30 | 1 | -1/+1 | |
| | | | | | Metadata is one word not two so it shouldn't be capitalised like this. | ||||
| * | Allow modules to provide an error for when a class doesn't match. | 2023-03-24 | 1 | -1/+1 | |
| | | |||||
| * | Refactor the password checking API. | 2023-02-28 | 1 | -1/+1 | |
| | | | | | | | | | | | - Rename from (On)PassCompare to (On)CheckPassword. - Fix the order of the arguments to be password, hash, value. This makes more sense than what it was previously. - Fix the code documentation to not be complete nonsense and not reference ancient outdated APIs. | ||||
| * | Convert log calls to use fmtlib format strings | 2023-01-24 | 1 | -7/+7 | |
| | | |||||
| * | Fix some issues reported by scan-build. | 2023-01-15 | 1 | -5/+15 | |
| | | | | | All of these are harmless and should never cause an issue in practise. | ||||
