aboutsummaryrefslogtreecommitdiff
path: root/include
Commit message (Expand)AuthorAgeFilesLines
...
* | 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.•••- 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-125-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-30/+5
* | Mark all acting extbans as MATCH_REQUIRE_CHANNEL.•••This removes the need for special behaviour in the silence module. Gravatar Sadie Powell2026-03-091-1/+1
* | 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.•••- 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-083-21/+20
* | 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
|\|
| * Remove the inverted parameter from the extban validation method.Gravatar Sadie Powell2026-03-061-3/+2
* | Merge branch 'insp4' into master.Gravatar Sadie Powell2026-03-061-0/+37
|\|
| * Deduplicate command usability checks into Command::IsUsableBy.Gravatar Sadie Powell2026-03-061-0/+5
| * Add a validation hook for extbans.Gravatar Sadie Powell2026-03-041-0/+37
* | Allow writing a Reply object to a user.Gravatar Sadie Powell2026-03-061-7/+13
* | 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-5/+6
* | Deduplicate command usability checks into Command::IsUsableBy.Gravatar Sadie Powell2026-03-051-0/+5
* | Only reset the specific type of reference when adding services.Gravatar Sadie Powell2026-03-041-1/+1
* | Clean up ModuleManager somewhat.Gravatar Sadie Powell2026-03-041-12/+16
* | Get rid of the ModuleRef typedef.•••Eventually this will be moved to shared_ptr but for now the typedef is just hiding the constness of the reference. Gravatar Sadie Powell2026-03-045-7/+5
* | Add support for strict references and switch some stuff to use them.Gravatar Sadie Powell2026-03-032-8/+9
* | Switch parameter count fields to use size_t.Gravatar Sadie Powell2026-03-021-8/+8
* | Abolish FMT_PTR, this does the same for both formatters.Gravatar Sadie Powell2026-03-021-2/+0
* | Rename ServiceProvider::creator to service_creator and add GetSource.Gravatar Sadie Powell2026-03-023-5/+8
* | 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-0215-89/+104
* | Add irc::less and convert irc::insensitive_swo to use it.Gravatar Sadie Powell2026-03-021-1/+13
* | Move the event/ prefix of events to the parent class.Gravatar Sadie Powell2026-03-0217-31/+31
* | Rename ServiceProvider methods to avoid shadowing issues.Gravatar Sadie Powell2026-03-0211-19/+22
* | Move standard replies to the core and add remote reply support.Gravatar Sadie Powell2026-03-017-171/+222
* | Merge branch 'insp4' into master.Gravatar Sadie Powell2026-02-281-0/+3
|\|
| * Fix RPL_ENDOFNAMES for real this time.Gravatar Sadie Powell2026-02-281-0/+3
* | Implement support for per-command maximum targets.•••Closes #2157. Gravatar Sadie Powell2026-02-272-4/+17
* | Move ERR_USERONCHANNEL to the global numeric header.Gravatar Sadie Powell2026-02-261-0/+1
* | Merge branch 'insp4' into master.Gravatar Sadie Powell2026-02-261-1/+1
|\|
| * Fix mistakenly getting monitor notifications for partially connected users.Gravatar Sadie Powell2026-02-231-1/+1
* | Add a numeric helper for ERR_NOPRIVILEGES.Gravatar Sadie Powell2026-02-262-1/+25
* | Unify command_parse and ctables.Gravatar Sadie Powell2026-02-154-151/+124