aboutsummaryrefslogtreecommitdiff
path: root/modules/spanningtree
Commit message (Expand)AuthorAgeFilesLines
* Add a helper function for calculating a percentage.Gravatar Sadie Powell2026-05-201-9/+2
* Update SETIDLE to match the other SET commands.Gravatar Sadie Powell2026-05-182-2/+9
* Switch ascii comparisons over to our own casemap functions.Gravatar Sadie Powell2026-04-301-1/+1
* Rename DLL_EXTENSION to INSPIRCD_MODULE_EXT.•••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. Gravatar Sadie Powell2026-04-071-1/+1
* Add insp::find_value, insp::to_ptr and switch code to use them.Gravatar Sadie Powell2026-04-042-18/+6
* Pass a server reference to OnRouteMessage.Gravatar Sadie Powell2026-04-041-1/+1
* Add an easier way to get the local Server* object.Gravatar Sadie Powell2026-04-041-1/+2
* Rename utility/map to container and prefix the difference method.Gravatar Sadie Powell2026-04-041-1/+1
* Tighten up the TLS requirements for server links.•••Servers must now either provide a fingerprint in the link config or provide a valid certificate. There's an undocumented (for now) opt-out in the config but even with this set it still doesn't allow expired, revoked, or otherwise invalid certificates. Gravatar Sadie Powell2026-04-044-13/+13
* Switch modules over to the new TLS API.Gravatar Sadie Powell2026-04-034-34/+25
* Move query string code from spanningtree to stringutils.Gravatar Sadie Powell2026-04-032-24/+3
* Merge branch 'insp4' into master.Gravatar Sadie Powell2026-03-313-3/+3
* Stop deleting the spanningtree utilities on unload.•••This is not an owning pointer now. Gravatar Sadie Powell2026-03-301-1/+1
* Switch modules from reference<> to shared_ptr<> and weak_ptr<>.Gravatar Sadie Powell2026-03-2916-91/+99
* Switch the extensible system to using shared pointers.Gravatar Sadie Powell2026-03-271-1/+1
* Move CUList to be declared inside User.Gravatar Sadie Powell2026-03-266-14/+14
* Switch typedefs to using statements.Gravatar Sadie Powell2026-03-262-3/+3
* Merge branch 'insp4' into master.Gravatar Sadie Powell2026-03-191-0/+1
* Improve support for renaming modes.Gravatar Sadie Powell2026-03-191-29/+1
* Change ServerList to return a list of Server* not a duplicate class.Gravatar Sadie Powell2026-03-151-11/+1
* Rewrite sepstream and move to stringutils.Gravatar Sadie Powell2026-03-144-15/+14
* Rewrite tokenstream and move to stringutils.Gravatar Sadie Powell2026-03-142-3/+5
* Clean up the casemapping checking and comparison code.Gravatar Sadie Powell2026-03-139-32/+32
* 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-5/+13
* 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-1237-686/+699
* Make the ban checking functions able to check any list mode.Gravatar Sadie Powell2026-03-081-0/+4
* 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-0811-35/+37
* Switch Reply::Type to be an enum instead of an enum class.•••This is shorter and its fully disambiguated anyway. Gravatar Sadie Powell2026-03-051-3/+3
* Merge branch 'insp4' into master.Gravatar Sadie Powell2026-03-031-0/+3
* Rename ServiceProvider::creator to service_creator and add GetSource.Gravatar Sadie Powell2026-03-023-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. Gravatar Sadie Powell2026-03-023-4/+4
* Move the event/ prefix of events to the parent class.Gravatar Sadie Powell2026-03-021-4/+4
* Rename ServiceProvider methods to avoid shadowing issues.Gravatar Sadie Powell2026-03-026-13/+13
* Run incoming ENCAP commands through the old protocol preprocessor.Gravatar Sadie Powell2026-03-011-0/+13
* Merge the chg* and set* modules.Gravatar Sadie Powell2026-03-012-0/+28
* Debug log when an encapsulated command fails.Gravatar Sadie Powell2026-03-011-1/+12
* Move standard replies to the core and add remote reply support.Gravatar Sadie Powell2026-03-016-2/+142
* Fix link compatibility with v4 after the sacommand merge.Gravatar Sadie Powell2026-02-261-5/+18
* Remove the c_ prefix from the c_registered mode.Gravatar Sadie Powell2026-02-261-9/+19
* Merge branch 'insp4' into master.Gravatar Sadie Powell2026-02-261-1/+1
* Fix the old name of the noctcp mode.Gravatar Sadie Powell2026-02-171-1/+1
* Remove the u_ prefix from user modes.Gravatar Sadie Powell2026-01-201-1/+7
* Clean up the sslmodes module.Gravatar Sadie Powell2026-01-202-2/+15
* Add join time to the membership identifier.Gravatar Sadie Powell2025-12-286-39/+65
* Fix some issues with the previous merge.Gravatar Sadie Powell2025-12-271-1/+1
* Merge branch 'insp4' into master.Gravatar Sadie Powell2025-12-079-28/+37
* Merge branch 'insp4' into master.Gravatar Sadie Powell2025-10-261-4/+27
* Merge branch 'insp4' into master.Gravatar Sadie Powell2025-09-301-1/+1
* Merge branch 'insp4'Gravatar Sadie Powell2025-08-153-8/+20
* Move spanningtree configuration to its own tag.•••This reduces the size of the core configuration file and also centralises all of the spanningtree configuration to one place. Gravatar Sadie Powell2025-07-201-8/+10