aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Expand)AuthorAgeFilesLines
...
* | Use the stats row count instead of counting opers manually.Gravatar Sadie Powell2023-02-272-6/+3
* | Allow non-opers with +h to show in `/STATS P`.Gravatar Sadie Powell2023-02-271-2/+66
* | Load both help and helpmode if a user has helpop in their config.Gravatar Sadie Powell2023-02-271-0/+5
* | Rename the helpop module to help.Gravatar Sadie Powell2023-02-271-16/+16
* | Split the help mode out from the helpop module.Gravatar Sadie Powell2023-02-272-12/+46
* | Fix missing override keyword.Gravatar Sadie Powell2023-02-261-1/+1
* | Allow opting-out of cloaking by connect class.Gravatar Sadie Powell2023-02-231-0/+10
* | Clean up the cloak_md5 module slightly.Gravatar Sadie Powell2023-02-221-36/+27
* | Improve the log messages when cloaking users.Gravatar Sadie Powell2023-02-201-3/+10
* | Avoid setting -x+x when a reset cloak has not changed.Gravatar Sadie Powell2023-02-201-6/+19
* | Merge the servprotect module into the services module.Gravatar Sadie Powell2023-02-194-129/+77
* | Rename the mode fields in the services module.Gravatar Sadie Powell2023-02-191-6/+6
* | Remove the ability of +k to hide the channels a service is in.•••This duplicates the behaviour of +I which services already use. Gravatar Sadie Powell2023-02-191-8/+0
* | Bind IP listeners with SCTP and TCP by default.Gravatar Sadie Powell2023-02-171-16/+36
* | Refactor the chanhistory mode handler and allow limiting the duration.Gravatar Sadie Powell2023-02-141-23/+44
* | Allow modules to get/reset the cloak lists.Gravatar Sadie Powell2023-02-141-40/+71
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-02-142-2/+3
|\|
| * Switch to the IRCv3 standard-replies cap.•••Nothing is using this so far so I'm not counting it as a breaking change. Gravatar Sadie Powell2023-02-132-2/+3
* | Add an option so local non-SSL users can be seen as securely connected.Gravatar Sadie Powell2023-02-113-13/+25
* | Add more action types to the repeat module.Gravatar Sadie Powell2023-02-052-40/+139
* | Remove unnecessary mysql include file.Gravatar Sadie Powell2023-02-051-1/+0
* | Warn users who have been found to be message flooding better.Gravatar Sadie Powell2023-02-041-3/+12
* | Refactor the messageflood module and add more action types.•••This doesn't touch help yet because I want to rewrite it soon. Closes #311. Closes #471. Closes #1032. Gravatar Sadie Powell2023-02-031-53/+194
* | Refactor reading the repeat module config.Gravatar Sadie Powell2023-02-031-18/+8
* | Expose the removed away message in OnUserBack.Gravatar Sadie Powell2023-02-036-6/+8
* | Allow bouncers to introduce a user as away.Gravatar Sadie Powell2023-02-032-1/+2
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-02-031-0/+6
|\|
| * Fix missing some data when synchronising a new user over a link.Gravatar Sadie Powell2023-02-031-0/+6
* | Release v4.0.0 alpha 19. v4.0.0a19Gravatar Sadie Powell2023-02-011-1/+1
* | Update module descriptions.Gravatar Sadie Powell2023-02-012-2/+2
* | Rename some source files to match their recently renamed headers.Gravatar Sadie Powell2023-01-272-0/+0
* | Fix clamping the size of the IOVector array.•••Casting then clamping might result in a weird size here so instead clamp before casting. Gravatar Sadie Powell2023-01-271-10/+3
* | Make reading the core config less of a mess.Gravatar Sadie Powell2023-01-273-64/+70
* | Don't log object culls unless built with RTTI.•••This is spammy and not very useful without type information. Gravatar Sadie Powell2023-01-251-2/+0
* | Move CheckExemption::Call to CheckExemption::EventProvider.•••Now FirstResult not a macro there's no need for this to be a free function. Gravatar Sadie Powell2023-01-2515-18/+18
* | Fix using std::max instead of std::min when clamping NetBufferSize.Gravatar Sadie Powell2023-01-251-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-01-259-9/+16
|\|
| * Work around a bug in reading the config for the Argon2 module.•••ProviderConfig::version is set to an argon2 version not a base 10 version so using it as a default for the config may result in the default being ignored. Luckily 0x10 and 0x12 are 16 and 18 respectively so we can just allow them as valid values until v4 where we can eradicate the SanitiseArgon2Version function and use getEnum instead. Gravatar Sadie Powell2023-01-251-0/+3
| * Fix PackageInfo directives in extra modules.Gravatar Sadie Powell2023-01-199-7/+14
| * Fix the nicklock module sending a notice instead of ERR_NOSUCHNICK.Gravatar Sadie Powell2023-01-181-2/+2
* | Replace getInt/getUInt/getFloat with type safe templated functions.Gravatar Sadie Powell2023-01-2542-130/+115
* | Fix using (unsigned) long instead of (s)size_t.Gravatar Sadie Powell2023-01-246-12/+11
* | Slim down stdalgo by removing unused and duplicate functions.Gravatar Sadie Powell2023-01-242-14/+2
* | Refactor the caching methods in User and rename to make more sense.Gravatar Sadie Powell2023-01-2461-201/+236
* | Clean up some remaining old format string stuff.Gravatar Sadie Powell2023-01-241-5/+0
* | Convert log calls to use fmtlib format stringsGravatar Sadie Powell2023-01-2482-331/+335
* | Convert WriteToSnoMask/WriteGlobalSno to use fmtlib format strings.Gravatar Sadie Powell2023-01-2369-297/+301
* | Replace VAFORMAT/InspIRCd::Format/... with fmt::sprintf.Gravatar Sadie Powell2023-01-237-56/+12
* | Replace InspIRCd::Format with fmt::format.Gravatar Sadie Powell2023-01-2396-360/+349
* | Vendor the fmtlib library.Gravatar Sadie Powell2023-01-232-0/+2