aboutsummaryrefslogtreecommitdiff
path: root/include
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'insp4' into master.Gravatar Sadie Powell2026-03-317-7/+7
|\
| * Update copyright headers.Gravatar InspIRCd Robot2026-03-317-7/+7
| |
* | Kill the remaining uses of intptr_t.Gravatar Sadie Powell2026-03-301-4/+4
| |
* | Fix an inverted condition in SimpleExtItem::GetPtr.Gravatar Sadie Powell2026-03-301-1/+1
| |
* | Add methods to ListExtItem to encode individual elements.Gravatar Sadie Powell2026-03-301-8/+33
| | | | | | | | This allows its use with non-string lists.
* | Replace some C-style array usage with Modern C++.Gravatar Sadie Powell2026-03-291-7/+10
| |
* | Fix various minor Doxygen issues.Gravatar Sadie Powell2026-03-296-7/+11
| |
* | Move service types to their own namespace.Gravatar Sadie Powell2026-03-2927-106/+124
| | | | | | | | | | | | | | | | | | | | | | - 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.
* | Fix building on older versions of Clang.Gravatar Sadie Powell2026-03-291-1/+1
| |
* | Remove an obsolete overload of ConvToStr.Gravatar Sadie Powell2026-03-291-10/+1
| | | | | | | | | | std::to_string is now defined by the C++ spec to use std::format so we may as well just do FMT::format in all cases.
* | Move some functions from stdalgo to utility/pointer.Gravatar Sadie Powell2026-03-292-21/+20
| |
* | Avoid the direct use of intptr_t wherever possible.Gravatar Sadie Powell2026-03-293-9/+56
| | | | | | | | | | This may cause problems on systems like CheriBSD where the pointer type stores extra data.
* | Delete the remainders of the old reference<> system.Gravatar Sadie Powell2026-03-295-109/+2
| |
* | Switch modules from reference<> to shared_ptr<> and weak_ptr<>.Gravatar Sadie Powell2026-03-2950-180/+258
| |
* | Move service code from base to its own header.Gravatar Sadie Powell2026-03-273-42/+64
| |
* | Remove the now unused refcountbase.Gravatar Sadie Powell2026-03-271-29/+0
| |
* | Switch the extensible system to using shared pointers.Gravatar Sadie Powell2026-03-275-65/+95
| |
* | Move CUList to be declared inside User.Gravatar Sadie Powell2026-03-267-13/+13
| |
* | Switch typedefs to using statements.Gravatar Sadie Powell2026-03-2636-104/+104
| |
* | Use server tracking from the services module in the sasl module.Gravatar Sadie Powell2026-03-251-0/+3
| |
* | Merge branch 'insp4' into master.Gravatar Sadie Powell2026-03-191-0/+3
|\|
| * Expose the maximum channel key length to services.Gravatar Sadie Powell2026-03-191-0/+3
| |
| * Backport the fix of copying dynamic references from git master.Gravatar Sadie Powell2026-03-171-1/+1
| |
* | Move some remaining channel settings to <channels>.Gravatar Sadie Powell2026-03-191-1/+1
| |
* | Improve support for renaming modes.Gravatar Sadie Powell2026-03-191-4/+14
| |
* | Fix a minor crash on shut down after copying a dynamic reference.Gravatar Sadie Powell2026-03-151-1/+1
| |
* | Change ServerList to return a list of Server* not a duplicate class.Gravatar Sadie Powell2026-03-151-12/+1
| |
* | Remove an obsolete function.Gravatar Sadie Powell2026-03-141-4/+0
| |
* | Convert some more stuff over to string_view.Gravatar Sadie Powell2026-03-142-4/+4
| |
* | Fix a crash caused by weirdly casting a pointer to an I/O handler.Gravatar Sadie Powell2026-03-141-0/+13
| |
* | Rewrite portparser and move to stringutils.Gravatar Sadie Powell2026-03-144-92/+80
| |
* | Rewrite sepstream and move to stringutils.Gravatar Sadie Powell2026-03-144-86/+70
| |
* | Convert some methods to use string_view.Gravatar Sadie Powell2026-03-143-15/+15
| |
* | Rewrite tokenstream and move to stringutils.Gravatar Sadie Powell2026-03-142-41/+75
| |
* | Clean up the casemapping checking and comparison code.Gravatar Sadie Powell2026-03-1318-105/+146
| |
* | Move <options:defaultmodes> to <channels> and rework.Gravatar Sadie Powell2026-03-125-6/+6
| | | | | | | | | | | | | | | | | | | | | | | | - 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.
* | Rework sending server protocol messages.Gravatar Sadie Powell2026-03-122-30/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - 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.
* | Mark all acting extbans as MATCH_REQUIRE_CHANNEL.Gravatar Sadie Powell2026-03-091-1/+1
| | | | | | | | This removes the need for special behaviour in the silence module.
* | Merge branch 'insp4' into master.Gravatar Sadie Powell2026-03-091-1/+7
|\|
| * Add the VF_DEPRECATED flag and warn on load about deprecation.Gravatar Sadie Powell2026-03-091-1/+7
| |
* | Make the ban checking functions able to check any list mode.Gravatar Sadie Powell2026-03-084-36/+48
| |
* | Fix various minor Doxygen issues.Gravatar Sadie Powell2026-03-0810-16/+21
| |
* | Merge branch 'insp4' into master.Gravatar Sadie Powell2026-03-083-3/+2
|\|
| * Fix some minor doxygen warnings.Gravatar Sadie Powell2026-03-083-3/+2
| |
* | Replace IS_* with member functions.Gravatar Sadie Powell2026-03-083-21/+20
| | | | | | | | | | | | - All user types get an Is* function. - Only local users are cast using the old function so only local users get an As* function.
* | Remove the unused remote user finding methods.Gravatar Sadie Powell2026-03-071-34/+0
| |
* | Add support for per-operator isupport.Gravatar Sadie Powell2026-03-061-0/+1
| |
* | Add the old connect class to OnPostChangeConnectClass.Gravatar Sadie Powell2026-03-061-1/+2
| |
* | Convert TranslateType to an enum class.Gravatar Sadie Powell2026-03-061-13/+15
| |
* | Merge branch 'insp4' into master.Gravatar Sadie Powell2026-03-061-3/+2
|\|