aboutsummaryrefslogtreecommitdiff
path: root/include
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'insp3' into master.Gravatar Sadie Powell2022-08-275-5/+6
|\
| * Release v3.14.0. v3.14.0Gravatar Sadie Powell2022-08-251-1/+1
| * Update copyright headers.Gravatar InspIRCd Robot2022-08-255-4/+5
| * Use std::string in the Serializer constructor.Gravatar Sadie Powell2022-08-241-1/+1
| * Backport fix for types removed in C++17 from master.Gravatar Sadie Powell2022-08-162-2/+8
* | Replace GetUserCounter() with GetUsers().size().•••This method is legacy from when there was a manual user counter and isn't much of a length saving over the unsugared version. Gravatar Sadie Powell2022-08-241-7/+0
* | Fix cached log messages not having the correct timestamp.Gravatar Sadie Powell2022-08-231-3/+7
* | Refactor the core event macros.Gravatar Sadie Powell2022-08-202-67/+51
* | Move aptosa/untosa into the sockaddrs union and add from/from_ip.•••The struct will also now always be zero-initialized by default which removes the footgun which has happened previously where the union has been accessed before being initialized leading to it containing weird values. Gravatar Sadie Powell2022-08-111-15/+28
* | Clean up the sockaddrs documentation comments.Gravatar Sadie Powell2022-08-101-7/+15
* | Rename OnSetUserIP to OnChangeRemoteAddress.Gravatar Sadie Powell2022-08-101-4/+4
* | Rename SetClientIP to ChangeRemoteAddress.Gravatar Sadie Powell2022-08-101-6/+6
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-08-101-4/+1
|\|
| * Deprecate the string variant of SetClientIP.•••Nothing uses this anymore. Gravatar Sadie Powell2022-08-101-4/+5
* | Add support for clearing the target of a dynamic_reference.Gravatar Sadie Powell2022-07-301-0/+1
* | Fix insp::intrusive_list on libc++.Gravatar Sadie Powell2022-07-261-3/+3
* | Remove some unnecessary getters in ConnectClass.•••All of these members are public anyway. Gravatar Sadie Powell2022-07-221-62/+0
* | Remove use of the deprecated std::iterator type.Gravatar Sadie Powell2022-07-221-2/+8
* | Switch from NULL to nullptr.Gravatar Sadie Powell2022-07-2225-72/+72
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-07-191-0/+8
|\|
| * Also use binary exit codes in places that terminate abruptly.•••This is a partial reversion of commit 57330e973b3eb1f2a84803c84daf9d6b420859fd. Gravatar Sadie Powell2022-07-191-0/+8
* | Add methods for extracting specific regex captures.Gravatar Sadie Powell2022-06-281-0/+19
* | Make dynamic a non-default header.Gravatar Sadie Powell2022-06-262-6/+2
* | Make clientprotocol{msg,event} and numericbuilder non-default headers.Gravatar Sadie Powell2022-06-262-4/+2
* | Move numeric helper classes to their own header.Gravatar Sadie Powell2022-06-263-146/+173
* | Move numerics to the source files where they are actually used.Gravatar Sadie Powell2022-06-265-179/+66
* | Make getEnum use the default instead of throwing.Gravatar Sadie Powell2022-06-251-7/+17
* | Centralise the logging of malformed config values.Gravatar Sadie Powell2022-06-251-0/+3
* | Modernize the syntax of various templates.Gravatar Sadie Powell2022-06-238-11/+11
* | Fix the modehandlers array being bigger than necessary•••We now pack the positions within this array so we can shrink it. Gravatar Sadie Powell2022-06-231-5/+2
* | Add a basic function for templating strings.Gravatar Sadie Powell2022-06-151-0/+10
* | Use size_t instead of `unsigned int` in ModeParser.Gravatar Sadie Powell2022-06-111-1/+1
* | Move TokenList to inspstring.Gravatar Sadie Powell2022-06-073-72/+51
* | Convert irc::find to use string_view.Gravatar Sadie Powell2022-06-071-1/+1
* | Get rid of GetVersionString.•••TODO: split fullversion/version into individual fields. Gravatar Sadie Powell2022-05-171-5/+0
* | Mark Membership::GetRank() as constant.Gravatar Sadie Powell2022-05-171-1/+1
* | Add a typedef for a mode rank.Gravatar Sadie Powell2022-05-175-13/+17
* | Store a set of list mode pointers in Membership instead of characters.Gravatar Sadie Powell2022-05-172-3/+21
* | Require specifying the repeat argument of the Timer class.Gravatar Sadie Powell2022-05-173-3/+3
* | Only give timers a trigger time when they're actually registered.Gravatar Sadie Powell2022-05-171-2/+1
* | Add the new account system.•••This still relies on the old extensibles for now but we can change that later. Gravatar Sadie Powell2022-05-141-0/+81
* | Remove the old account system.Gravatar Sadie Powell2022-05-141-54/+0
* | Move unistd out of the global compat header.Gravatar Sadie Powell2022-05-071-1/+0
* | Get rid of entrypoint, specify the main function name directly.Gravatar Sadie Powell2022-05-072-3/+0
* | Remove unnecessary arguments to On(Post)Oper.•••These are already accessible from the user object. Gravatar Sadie Powell2022-05-071-5/+2
* | Implement support for regex capture groups.Gravatar Sadie Powell2022-05-061-0/+41
* | Fix various Doxygen comment issues.Gravatar Sadie Powell2022-05-023-14/+9
* | Flush logs every 15 minutes to avoid losing data.Gravatar Sadie Powell2022-05-021-0/+4
* | Add a log method for stringifying a logging method.Gravatar Sadie Powell2022-05-021-0/+7
* | Mark fields that take a Log::Engine* as non-null.Gravatar Sadie Powell2022-05-011-2/+2