| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Use saturating adds in the xline header. | 7 days | 1 | -1/+0 | |
| | | |||||
| * | Use saturating adds/subtracts when handling timestamps. | 7 days | 8 | -15/+18 | |
| | | |||||
| * | Allow numerics to have an associated related user. | 2026-06-27 | 1 | -0/+1 | |
| | | |||||
| * | Redocument Write*Numeric and allow mutating values in OnNumeric. | 2026-06-27 | 1 | -1/+1 | |
| | | |||||
| * | Merge branch 'insp4' into master. | 2026-06-23 | 2 | -2/+2 | |
| | | |||||
| * | Move server restart logic to the core. | 2026-06-19 | 3 | -59/+3 | |
| | | | | | | | | - Properly clean up the process with Cleanup() instead of using - DieRestart. - Use close_range on modern Linux instead of the CLOEXEC hack. | ||||
| * | Merge branch 'insp4' into master. | 2026-06-19 | 1 | -1/+1 | |
| | | |||||
| * | Merge branch 'insp4' into master. | 2026-06-17 | 5 | -24/+23 | |
| | | |||||
| * | Rework how list mode limits are parsed and applied. | 2026-06-15 | 1 | -6/+33 | |
| | | | | | | | | | | | | | | | | - 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. | ||||
| * | Fix missing virtual dtors in types with virtual methods. | 2026-06-13 | 1 | -0/+1 | |
| | | | | | This is fine currently but is a potential future cause of bugs. | ||||
| * | Use aggregate initialisation instead of memset. | 2026-06-13 | 1 | -2/+1 | |
| | | |||||
| * | Merge branch 'insp4' into master. | 2026-06-06 | 1 | -1/+1 | |
| | | |||||
| * | Update my email address. | 2026-06-06 | 63 | -63/+63 | |
| | | |||||
| * | Add a helper method for calculating the best binary units for a value. | 2026-05-20 | 1 | -12/+12 | |
| | | |||||
| * | Add a helper function for calculating a percentage. | 2026-05-20 | 2 | -3/+6 | |
| | | |||||
| * | Merge branch 'insp4' into master. | 2026-05-20 | 1 | -10/+10 | |
| | | |||||
| * | Remove the remaining function in utility/string to utility/container. | 2026-04-30 | 6 | -6/+3 | |
| | | |||||
| * | Switch ascii comparisons over to our own casemap functions. | 2026-04-30 | 2 | -3/+3 | |
| | | |||||
| * | Move CommandLine from ServerConfig to InspIRCd. | 2026-04-30 | 1 | -2/+2 | |
| | | | | | | | 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. | ||||
| * | Update the author list. | 2026-04-18 | 1 | -37/+37 | |
| | | |||||
| * | Merge branch 'insp4' into master. | 2026-04-08 | 1 | -1/+7 | |
| | | |||||
| * | Add insp::find_value, insp::to_ptr and switch code to use them. | 2026-04-04 | 2 | -12/+6 | |
| | | |||||
| * | Add an easier way to get the local Server* object. | 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 | 12 | -44/+42 | |
| | | |||||
| * | Move service types to their own namespace. | 2026-03-29 | 4 | -6/+6 | |
| | | | | | | | | | | | | - 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 | 2 | -2/+2 | |
| | | |||||
| * | Avoid the direct use of intptr_t wherever possible. | 2026-03-29 | 2 | -6/+6 | |
| | | | | | | This may cause problems on systems like CheriBSD where the pointer type stores extra data. | ||||
| * | Switch modules from reference<> to shared_ptr<> and weak_ptr<>. | 2026-03-29 | 61 | -243/+255 | |
| | | |||||
| * | Switch the extensible system to using shared pointers. | 2026-03-27 | 1 | -16/+17 | |
| | | |||||
| * | Move CUList to be declared inside User. | 2026-03-26 | 3 | -3/+3 | |
| | | |||||
| * | Switch typedefs to using statements. | 2026-03-26 | 5 | -9/+9 | |
| | | |||||
| * | Merge branch 'insp4' into master. | 2026-03-19 | 4 | -7/+3 | |
| | | |||||
| * | Reduce indentation in core_channel. | 2026-03-19 | 1 | -18/+13 | |
| | | |||||
| * | Improve config compatibility with v4. | 2026-03-19 | 1 | -3/+11 | |
| | | |||||
| * | Move some remaining channel settings to <channels>. | 2026-03-19 | 2 | -4/+4 | |
| | | |||||
| * | Generate the credits for /INFO from Git history. | 2026-03-15 | 3 | -42/+132 | |
| | | |||||
| * | Change ServerList to return a list of Server* not a duplicate class. | 2026-03-15 | 1 | -1/+1 | |
| | | |||||
| * | Fix message tag parsing | 2026-03-14 | 1 | -1/+1 | |
| | | | | | Fixes 76f3f24c03c22576324e5af199d3e61d02a79b0d | ||||
| * | Fix a crash caused by weirdly casting a pointer to an I/O handler. | 2026-03-14 | 1 | -0/+1 | |
| | | |||||
| * | Rewrite portparser and move to stringutils. | 2026-03-14 | 1 | -5/+4 | |
| | | |||||
| * | Rewrite sepstream and move to stringutils. | 2026-03-14 | 7 | -11/+11 | |
| | | |||||
| * | Rewrite tokenstream and move to stringutils. | 2026-03-14 | 1 | -1/+2 | |
| | | |||||
| * | Clean up the casemapping checking and comparison code. | 2026-03-13 | 16 | -16/+16 | |
| | | |||||
| * | Move <options:{fixed,prefix,suffix}part> to <channels>. | 2026-03-12 | 2 | -5/+6 | |
| | | |||||
| * | Move <options:modesinlist> to <channels>. | 2026-03-12 | 1 | -1/+1 | |
| | | |||||
| * | Merge branch 'insp4' into master. | 2026-03-12 | 1 | -1/+1 | |
| | | |||||
| * | Move <options:defaultmodes> to <channels> and rework. | 2026-03-12 | 1 | -1/+98 | |
| | | | | | | | | | | | | | - 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. | ||||
| * | Move channel settings to the <channels> tag. | 2026-03-12 | 1 | -6/+6 | |
| | | |||||
| * | Rework sending server protocol messages. | 2026-03-12 | 2 | -3/+3 | |
| | | | | | | | | | | | | | | | | | | - 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. | ||||
