aboutsummaryrefslogtreecommitdiff
path: root/modules/core
Commit message (Expand)AuthorAgeFilesLines
* Remove the remaining function in utility/string to utility/container.Gravatar Sadie Powell2026-04-306-6/+3
* Switch ascii comparisons over to our own casemap functions.Gravatar Sadie Powell2026-04-302-3/+3
* Move CommandLine from ServerConfig to InspIRCd.•••There's no need for this to be in ServerConfig. Although it is configuration it applies more to the cli interface which is part of the InspIRCd class. Gravatar Sadie Powell2026-04-301-2/+2
* Update the author list.Gravatar InspIRCd Robot2026-04-181-37/+37
* Merge branch 'insp4' into master.Gravatar Sadie Powell2026-04-081-1/+7
* Add insp::find_value, insp::to_ptr and switch code to use them.Gravatar Sadie Powell2026-04-042-12/+6
* Add an easier way to get the local Server* object.Gravatar Sadie Powell2026-04-041-1/+1
* Rename utility/map to container and prefix the difference method.Gravatar Sadie Powell2026-04-041-2/+2
* Merge branch 'insp4' into master.Gravatar Sadie Powell2026-03-3112-44/+42
* 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. Gravatar Sadie Powell2026-03-294-6/+6
* Move some functions from stdalgo to utility/pointer.Gravatar Sadie Powell2026-03-292-2/+2
* Avoid the direct use of intptr_t wherever possible.•••This may cause problems on systems like CheriBSD where the pointer type stores extra data. Gravatar Sadie Powell2026-03-292-6/+6
* Switch modules from reference<> to shared_ptr<> and weak_ptr<>.Gravatar Sadie Powell2026-03-2961-243/+255
* Switch the extensible system to using shared pointers.Gravatar Sadie Powell2026-03-271-16/+17
* Move CUList to be declared inside User.Gravatar Sadie Powell2026-03-263-3/+3
* Switch typedefs to using statements.Gravatar Sadie Powell2026-03-265-9/+9
* Merge branch 'insp4' into master.Gravatar Sadie Powell2026-03-194-7/+3
* Reduce indentation in core_channel.Gravatar Sadie Powell2026-03-191-18/+13
* Improve config compatibility with v4.Gravatar Sadie Powell2026-03-191-3/+11
* Move some remaining channel settings to <channels>.Gravatar Sadie Powell2026-03-192-4/+4
* Generate the credits for /INFO from Git history.Gravatar Sadie Powell2026-03-153-42/+132
* Change ServerList to return a list of Server* not a duplicate class.Gravatar Sadie Powell2026-03-151-1/+1
* Fix message tag parsing•••Fixes 76f3f24c03c22576324e5af199d3e61d02a79b0d Gravatar Valentin Lorentz2026-03-141-1/+1
* Fix a crash caused by weirdly casting a pointer to an I/O handler.Gravatar Sadie Powell2026-03-141-0/+1
* Rewrite portparser and move to stringutils.Gravatar Sadie Powell2026-03-141-5/+4
* Rewrite sepstream and move to stringutils.Gravatar Sadie Powell2026-03-147-11/+11
* Rewrite tokenstream and move to stringutils.Gravatar Sadie Powell2026-03-141-1/+2
* Clean up the casemapping checking and comparison code.Gravatar Sadie Powell2026-03-1316-16/+16
* Move <options:{fixed,prefix,suffix}part> to <channels>.Gravatar Sadie Powell2026-03-122-5/+6
* Move <options:modesinlist> to <channels>.Gravatar Sadie Powell2026-03-121-1/+1
* Merge branch 'insp4' into master.Gravatar Sadie Powell2026-03-121-1/+1
* Move <options:defaultmodes> to <channels> and rework.•••- 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. Gravatar Sadie Powell2026-03-121-1/+98
* Move channel settings to the <channels> tag.Gravatar Sadie Powell2026-03-121-6/+6
* 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. Gravatar Sadie Powell2026-03-122-3/+3
* Make the ban checking functions able to check any list mode.Gravatar Sadie Powell2026-03-087-10/+21
* 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. Gravatar Sadie Powell2026-03-0826-69/+69
* Add support for per-operator isupport.Gravatar Sadie Powell2026-03-064-14/+130
* Move building TARGMAX to core_info.Gravatar Sadie Powell2026-03-062-14/+23
* Add the old connect class to OnPostChangeConnectClass.Gravatar Sadie Powell2026-03-061-7/+2
* Convert TranslateType to an enum class.Gravatar Sadie Powell2026-03-062-2/+2
* Merge branch 'insp4' into master.Gravatar Sadie Powell2026-03-061-1/+1
* Add validation to silence extbans.Gravatar Sadie Powell2026-03-061-0/+3
* Merge branch 'insp4' into master.Gravatar Sadie Powell2026-03-063-2/+49
* Deduplicate command usability checks into Command::IsUsableBy.Gravatar Sadie Powell2026-03-051-16/+1
* Fix kicking with multiple channels.Gravatar Sadie Powell2026-03-021-2/+3
* Switch parameter count fields to use size_t.Gravatar Sadie Powell2026-03-022-2/+2
* Abolish FMT_PTR, this does the same for both formatters.Gravatar Sadie Powell2026-03-022-5/+5
* Rename ServiceProvider::creator to service_creator and add GetSource.Gravatar Sadie Powell2026-03-027-29/+29
* 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. Gravatar Sadie Powell2026-03-024-7/+7
* Move the event/ prefix of events to the parent class.Gravatar Sadie Powell2026-03-027-10/+10