aboutsummaryrefslogtreecommitdiffstats
path: root/include/ctables.h
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright headers.Gravatar InspIRCd Robot2024-06-211-1/+1
|
* Update copyright headers.Gravatar InspIRCd Robot2024-06-071-2/+2
|
* Merge branch 'insp3' into master.Gravatar Sadie Powell2023-01-011-1/+1
|\
| * Update copyright headers.Gravatar InspIRCd Robot2022-12-301-1/+1
| |
* | Rename session registration to connection to avoid a semantic conflict.Gravatar Sadie Powell2022-10-291-2/+2
| | | | | | | | | | | | We previously referred to both session registration and user registration as "registration" which is confusing for users who aren't familiar with how IRC works.
* | Make internal penalty be specified in millisecs instead of seconds.Gravatar Sadie Powell2022-09-091-2/+2
| | | | | | | | This removes the need to multiply it later.
* | Default allow_empty_last_param to false.Gravatar Sadie Powell2022-09-071-2/+1
| |
* | Fix more warnings discovered with -Weverything.Gravatar Sadie Powell2022-09-051-2/+0
| |
* | Format enums with an underlying type like classes.Gravatar Sadie Powell2022-04-301-2/+4
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-04-291-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2022-04-281-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-03-111-1/+2
|\|
| * Fix various minor Doxygen warnings.Gravatar Sadie Powell2022-02-021-2/+2
| |
* | Abolish the infernal space before accessibility keywords.Gravatar Sadie Powell2022-01-251-7/+7
| |
* | Add the final keyword to all remaining classes that can have it.Gravatar Sadie Powell2021-12-201-4/+7
| |
* | Clean up the routing code in the ctables header.Gravatar Sadie Powell2021-07-241-43/+58
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-03-051-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2021-03-051-1/+1
| |
* | Clean up a bunch of contructors and destructors.Gravatar Sadie Powell2020-11-011-2/+2
| |
* | Convert CmdResult to an 8-bit strongly typed enum.Gravatar Sadie Powell2020-10-271-10/+10
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-09-271-0/+1
|\|
| * Make shun block client-only tags by default.Gravatar Sadie Powell2020-09-271-0/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-05-051-2/+2
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-04-241-1/+1
| |
| * Fixes by misspell-fixerGravatar InspIRCd Robot2020-04-211-1/+1
| |
* | Replace the flags_required field with an enum.Gravatar Sadie Powell2020-04-141-5/+15
| |
* | Alow modules to specify multiple syntax lines.Gravatar Sadie Powell2020-04-141-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-04-091-2/+2
|\|
| * Fix various documentation and formatting issues.Gravatar Sadie Powell2020-03-301-2/+2
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-03-181-41/+72
|\|
| * Allow commands to override ERR_{NEEDSMOREPARAMS,NOTREGISTERED}.Gravatar Sadie Powell2020-03-181-0/+12
| |
| * Clean up the documentation of the Command and SplitCommand classes.Gravatar Sadie Powell2020-03-051-16/+48
| |
| * Move user command stuff from CommandBase to Command.Gravatar Sadie Powell2020-03-051-28/+15
| |
* | Use C++11 inline initialisation for class members.Gravatar Sadie Powell2020-02-061-6/+6
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-171-3/+6
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-111-3/+6
| |
* | Replace translation macros with a C++11 initialiser list.Gravatar Sadie Powell2019-02-151-15/+0
| |
* | Replace the override macro with the override keyword.Gravatar Sadie Powell2019-01-251-2/+2
|/
* Move the <disabled> tag out of the core to a new module.Gravatar Peter Powell2019-01-241-21/+0
|
* Implement IRCv3 message tag support.Gravatar Peter Powell2018-08-131-1/+34
| | | | Co-authored-by: Attila Molnar <attilamolnar@hush.com>
* Use CommandBase::Params instead of std::vector<std::string>.Gravatar Peter Powell2018-07-261-6/+8
| | | | | This is presently a typedef but will soon be replaced with a class that encapsulates both tags and parameters.
* Add the override keyword in places that it is missing.Gravatar Peter Powell2017-11-211-1/+1
| | | | GCCs warnings for this are much better than Clangs.
* Fix a ton of -Wsign-conversion warnings.Gravatar Peter Powell2017-11-171-4/+4
|
* Remove CMD_EPERM as it is not used anywhere.Gravatar Peter Powell2017-10-211-6/+9
|
* Implement Command::RegisterService()Gravatar Attila Molnar2015-11-231-0/+4
|
* Move implementation of Command and CommandBase functions into a source fileGravatar Attila Molnar2015-01-241-18/+4
|
* Remove unused CommandBase::DecodeParameter()Gravatar Attila Molnar2015-01-241-10/+0
|
* Switch to unsigned ints in CommandBase constructor for min and max paramsGravatar Attila Molnar2015-01-241-1/+1
|
* Add ProtocolInterface::BroadcastEncap() and infrastructure for manually ↵Gravatar Attila Molnar2014-01-261-0/+6
| | | | forwarding ENCAPs
* Introduce Server classGravatar Attila Molnar2014-01-051-1/+8
| | | | | - Replaces std::string server in User - Replaces InspIRCd::ULine() and SilentULine()