aboutsummaryrefslogtreecommitdiffstats
path: root/include
Commit message (Collapse)AuthorAgeFilesLines
* 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 necessaryGravatar Sadie Powell2022-06-231-5/+2
| | | | We now pack the positions within this array so we can shrink it.
* 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.Gravatar Sadie Powell2022-05-171-5/+0
| | | | TODO: split fullversion/version into individual fields.
* 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.Gravatar Sadie Powell2022-05-141-0/+81
| | | | | This still relies on the old extensibles for now but we can change that later.
* 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.Gravatar Sadie Powell2022-05-071-5/+2
| | | | These are already accessible from the user object.
* 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
|
* Rewrite logging calls to use the new APIs.Gravatar Sadie Powell2022-05-011-2/+2
|
* Rewrite the entire logging system.Gravatar Sadie Powell2022-05-012-1/+352
| | | | | | - Much cleaner API for writing to the log. - Adds support for stderr and stdout logging to the core. - Adds support for sql and syslog logging in modules.
* Delete the old logging system.Gravatar Sadie Powell2022-05-013-269/+0
|
* Slim down the globally included files.Gravatar Sadie Powell2022-04-302-13/+8
|
* Enable support for UNIX socket listeners on Windows.Gravatar Sadie Powell2022-04-301-3/+1
|
* Format enums with an underlying type like classes.Gravatar Sadie Powell2022-04-303-5/+10
|
* Make the extban enums 8-bit.Gravatar Sadie Powell2022-04-291-0/+3
|
* Merge branch 'insp3' into master.Gravatar Sadie Powell2022-04-2916-16/+16
|\
| * Release v3.13.0. v3.13.0Gravatar Sadie Powell2022-04-281-1/+1
| |
| * Update copyright headers.Gravatar InspIRCd Robot2022-04-2816-16/+16
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-04-261-1/+0
|\|
| * Remove a forward declaration for a non-existent type.Gravatar Sadie Powell2022-04-211-1/+0
| |
* | Only write to the pid file on boot.Gravatar Sadie Powell2022-04-231-2/+1
| | | | | | | | | | | | | | | | Being able to change this after first boot is error prone and does not work well on system-wide installs where the server needs root to write the file. Closes #566.
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-04-214-3/+4
|\|
| * Fix an outdated comment.Gravatar Sadie Powell2022-04-201-1/+1
| |
| * Fix doxygen to include the public module header files.Gravatar Sadie Powell2022-04-172-1/+2
| |
* | Mark the main loop as noreturn.Gravatar Sadie Powell2022-04-211-4/+2
| |
* | Fix a now outdated documentation comment.Gravatar Sadie Powell2022-04-181-3/+3
| |
* | Constify the parameter arguments in ListModeBase's Tell* methods.Gravatar Sadie Powell2022-04-171-3/+3
| |
* | Fix a missing doxygen comment.Gravatar Sadie Powell2022-04-171-0/+6
| |
* | Allow normalising extbans to a specific format.Gravatar Sadie Powell2022-04-171-0/+15
| | | | | | | | Also, fix canonicalisation of acting extban values.