aboutsummaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* 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-274-66/+72
* Rename some headers to match the common naming system.Gravatar Sadie Powell2023-01-265-3/+3
* 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-2516-33/+30
* 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-2543-137/+161
* | Fix using (unsigned) long instead of (s)size_t.Gravatar Sadie Powell2023-01-249-16/+15
* | Fix some junk left over in Doxygen comments.Gravatar Sadie Powell2023-01-241-2/+0
* | Include more stuff in the Doxygen documentation.Gravatar Sadie Powell2023-01-242-6/+7
* | Slim down stdalgo by removing unused and duplicate functions.Gravatar Sadie Powell2023-01-243-131/+2
* | Document how users should enable extra modules better.Gravatar Sadie Powell2023-01-241-26/+78
* | Refactor the caching methods in User and rename to make more sense.Gravatar Sadie Powell2023-01-2465-264/+301
* | Clean up some remaining old format string stuff.Gravatar Sadie Powell2023-01-242-6/+1
* | Convert log calls to use fmtlib format stringsGravatar Sadie Powell2023-01-2484-337/+340
* | Convert WriteToSnoMask/WriteGlobalSno to use fmtlib format strings.Gravatar Sadie Powell2023-01-2370-299/+303
* | Replace VAFORMAT/InspIRCd::Format/... with fmt::sprintf.Gravatar Sadie Powell2023-01-2313-134/+55
* | Replace InspIRCd::Format with fmt::format.Gravatar Sadie Powell2023-01-23101-375/+363
* | Vendor the fmtlib library.Gravatar Sadie Powell2023-01-2323-3/+15412
* | Default more stuff inline in the InspIRCd class.Gravatar Sadie Powell2023-01-232-8/+4
* | Move duration functions to their own header.Gravatar Sadie Powell2023-01-2333-106/+163
* | Move NotifyRawIO to the Log namespace.Gravatar Sadie Powell2023-01-225-15/+15
* | Replace ModeAction with bool.•••This enum is functionally the same as bool but with weird semantics. Gravatar Sadie Powell2023-01-2229-166/+153
* | Convert various enums to strongly typed scoped enums.Gravatar Sadie Powell2023-01-2224-104/+112
* | Fix some Doxygen comment issues.Gravatar Sadie Powell2023-01-212-1/+2
* | Make implementing OnStreamSocketClose optional in middle hooks.Gravatar Sadie Powell2023-01-213-9/+3
* | Use the underlying transport method for pinging idle clients.•••Closes #1998. Gravatar Sadie Powell2023-01-214-10/+58
* | Log the versions of third-party libraries used by modules.Gravatar Sadie Powell2023-01-1911-4/+78
* | Fix Cloak::Method and Log::Method being needlessly Cullable.•••If a method needs to be cullable it can inherit from that type and pass Cullable::Deleter as a custom deleter to the shared_ptr. Gravatar Sadie Powell2023-01-182-2/+7
* | The cloak_md5 module needs the md5 module not the sha2 module.Gravatar Sadie Powell2023-01-181-1/+1
* | Check the hashing modules are enabled when creating a cloak method.Gravatar Sadie Powell2023-01-182-0/+13
* | Fix some typos in the cloak_sha256 example config.Gravatar Sadie Powell2023-01-181-2/+2
* | Allow setting <cloak:{host,path}parts> to 0.Gravatar Sadie Powell2023-01-181-3/+3
* | Allow setting a different hostparts option for UNIX sockets.•••This defaults to 1 as it doesn't really make sense to expose more than just this. Gravatar Sadie Powell2023-01-182-9/+16
* | Refactor the ListenSocket constructor to be less of a mess.•••Also clear up the error handling. Gravatar Sadie Powell2023-01-171-60/+93
* | Replace SocketEngine::SetReuse with SocketEngine::SetOption.Gravatar Sadie Powell2023-01-174-10/+26
* | Add a helper method for determining if a sockaddrs is an IP endpoint.Gravatar Sadie Powell2023-01-176-8/+8
* | Allow creating a FailedPort without a bindspec.Gravatar Sadie Powell2023-01-174-19/+55
* | Store the actual error in FailedPort instead of an error code.Gravatar Sadie Powell2023-01-164-8/+8
* | Fix some testing changes that snuck in to the previous commit.Gravatar Sadie Powell2023-01-162-2/+1
* | Add support for linking servers over SCTP sockets.Gravatar Sadie Powell2023-01-165-7/+17
* | Add support for SCTP listeners.Gravatar Sadie Powell2023-01-165-12/+42
* | Move enforcing channel join limits to core_channel.Gravatar Sadie Powell2023-01-162-26/+24