aboutsummaryrefslogtreecommitdiffstats
path: root/modules/core
Commit message (Expand)AuthorAgeFilesLines
* Use saturating adds in the xline header.Gravatar Sadie Powell7 days1-1/+0
* Use saturating adds/subtracts when handling timestamps.Gravatar Sadie Powell7 days8-15/+18
* Allow numerics to have an associated related user.Gravatar Sadie Powell2026-06-271-0/+1
* Redocument Write*Numeric and allow mutating values in OnNumeric.Gravatar Sadie Powell2026-06-271-1/+1
* Merge branch 'insp4' into master.Gravatar Sadie Powell2026-06-232-2/+2
* Move server restart logic to the core.•••- Properly clean up the process with Cleanup() instead of using - DieRestart. - Use close_range on modern Linux instead of the CLOEXEC hack. Gravatar Sadie Powell2026-06-193-59/+3
* Merge branch 'insp4' into master.Gravatar Sadie Powell2026-06-191-1/+1
* Merge branch 'insp4' into master.Gravatar Sadie Powell2026-06-175-24/+23
* Rework how list mode limits are parsed and applied.•••- Keep one list of all limits in ServerLimits instead of one in each list mode. This should reduce memory usage slightly and the lists are usually so small and are compared so infrequently that this won't cause any performnace issues. - Automatically look up the mode limit when the mode list is used instead of manually rehashing in each module. This should cause less footguns than the old API and doesn't require manually updating the limit on rehash. - Move code relating to variable and lower limits from the core to core_channel. This is only used by ISUPPORT. Gravatar Sadie Powell2026-06-151-6/+33
* Fix missing virtual dtors in types with virtual methods.•••This is fine currently but is a potential future cause of bugs. Gravatar Sadie Powell2026-06-131-0/+1
* Use aggregate initialisation instead of memset.Gravatar Sadie Powell2026-06-131-2/+1
* Merge branch 'insp4' into master.Gravatar Sadie Powell2026-06-061-1/+1
* Update my email address.Gravatar Sadie Powell2026-06-0663-63/+63
* Add a helper method for calculating the best binary units for a value.Gravatar Sadie Powell2026-05-201-12/+12
* Add a helper function for calculating a percentage.Gravatar Sadie Powell2026-05-202-3/+6
* Merge branch 'insp4' into master.Gravatar Sadie Powell2026-05-201-10/+10
* 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