aboutsummaryrefslogtreecommitdiff
path: root/src/coremods
Commit message (Expand)AuthorAgeFilesLines
* Quit users during cleanup instead of when /DIE is executed.Gravatar Peter Powell2019-02-051-9/+0
* Move <oper:class> and <oper:vhost> to core_oper.Gravatar Peter Powell2019-02-051-0/+15
* Fix -Wnewline-eof warning.Gravatar Peter Powell2019-01-291-1/+1
* Fix RPL_ADMINME not having the correct parameters.Gravatar Peter Powell2019-01-281-1/+1
* Fix sending the modes in RPL_CHANNELMODEIS as one big parameter.Gravatar Peter Powell2019-01-281-1/+45
* Add ParamMode::IsParameterSecret and remove special casing of keys.Gravatar Peter Powell2019-01-282-0/+6
* Fix not checking for server names case insensitively.Gravatar Peter Powell2019-01-286-6/+6
* Remove trailing whitespace from various source files.Gravatar Peter Powell2019-01-243-4/+3
* Fix overriding <options:exemptchanops> with the exemptchanops mode.•••Closes #1558. Gravatar Peter Powell2019-01-241-1/+1
* Add the reason to xline removal notices. (#1545)•••Show the reason in manual xline removal SNOTICEs, just like expiry SNOTICEs do. This modifies XLineManager::DelLine() to require another string reference passed to it. Requested by @Robby-.Gravatar Matt Schatz2019-01-245-10/+20
* Implement support for the extended tag space for client tags.Gravatar Peter Powell2019-01-241-20/+55
* Don't tell the user if DNS lookups are disabled.Gravatar Peter Powell2019-01-231-6/+2
* Fix sending the entire VERSION output as a single parameter.•••Closes #1560. Gravatar Peter Powell2019-01-191-2/+6
* Redo OnSetEndPoint logic to fix duplicate clones (#1549).Gravatar linuxdaemon2019-01-141-0/+9
* core_privmsg: respect the exemption list when sending $* messages.Gravatar Peter Powell2019-01-091-21/+18
* Improve X-line text consistency.•••- Change any "-Line", ":Line", or "*line" to "-line" throughout the X-line code, comments, and documentation. - Add periods to the end of some notices. - Correct a typo in the Q-line code comments. - Update the filter module documentation (shun addition). Co-authored-by: Robby <robby@chatbelgie.be> Gravatar Matt Schatz2019-01-097-30/+30
* core_stub: add stubs for the SUMMON and USERS commands.Gravatar Peter Powell2019-01-071-2/+48
* Update the names in the /INFO credits.•••- Add linuxdaemon to Active Contributors. - Move Sheogorath to Active Contributors. Gravatar Peter Powell2019-01-041-3/+2
* Only parse valid durations, don't treat invalid multipliers as seconds (#1538)Gravatar linuxdaemon2018-12-216-6/+39
* Add the <maxlist> tag and switch ListModeBase to always use it.•••The old method of doing this was: 1. Extremely inconsistently used. Some list modes used <banlist> and some used their own config tag. 2. Not documented in the slightest. There was a small reference to <maxbans> for the ban mode but nothing else. 3. In some cases conflicting with other config tags. The chanfilter module defined a <chanfilter> tag for general config whilst also using it for the max list settings. The new <maxlist> tag avoids these issues entirely. Gravatar Peter Powell2018-12-192-2/+2
* Make more modules rehash atomically (#1535)•••Have each module validate the values it loads before setting them, so any errors don't result in partial application of the configs Gravatar linuxdaemon2018-12-198-62/+83
* Alphabetically sort the modes in MAXLIST tokens.•••This isn't strictly necessary but we do it for other modes in 005 so lets do it for MAXLIST too. Gravatar Peter Powell2018-12-171-1/+4
* Fix a typo in core_user.Gravatar Peter Powell2018-12-151-1/+1
* Fix conversion issues by replacing ConvToInt with ConvToNum<T>.•••The former was a thin wrapper around atol and brought with it all of the weird parsing logic of atol which is almost never what is actually wanted. It also almost never returned the numeric type which is actually wanted which can cause weird issues when casting. Gravatar Peter Powell2018-12-122-3/+3
* Fix overly escaping MOTDs if they are in more than one connect class.Gravatar Peter Powell2018-12-103-2/+24
* Fix the OnSendWhoLine event being completely broken with WHOX.Gravatar Peter Powell2018-11-151-25/+6
* Fix the syntax description for the WHO command.•••Thanks to @KoraggKnightWolf for reporting this. Gravatar Peter Powell2018-11-111-1/+1
* Move <security:userstats> into core_stats.Gravatar Peter Powell2018-10-011-3/+10
* Move <security:genericoper> into core_whois.Gravatar Peter Powell2018-10-011-1/+10
* Move <security:hideulinekills> into core_oper.Gravatar Peter Powell2018-10-013-1/+5
* Move <security:hidekills> into core_oper.Gravatar Peter Powell2018-10-013-6/+15
* Switch all core modules still using COMMAND_INIT to MODULE_INIT.Gravatar Peter Powell2018-09-235-5/+89
* Don't update the idle timer when a user replies to a CTCP.•••Closes #1305. Gravatar Peter Powell2018-08-261-6/+16
* Implement proper CTCP parsing in MessageDetails.Gravatar Peter Powell2018-08-261-3/+71
* Send the 001-004 numerics and MOTD/LUSERS from core_info.•••Co-authored-by: Attila Molnar <attilamolnar@hush.com> Gravatar Peter Powell2018-08-221-1/+99
* Fix a few things that should be marked as override but aren't.Gravatar Peter Powell2018-08-211-1/+1
* Remove the OnInfo event.•••This is not used by anything and On{Post,Pre}Command hooks can be used if people really want to add stuff to INFO. Gravatar Peter Powell2018-08-141-1/+1
* Implement IRCv3 message tag support.•••Co-authored-by: Attila Molnar <attilamolnar@hush.com> Gravatar Peter Powell2018-08-1310-56/+511
* Add an accessor for the last mode change list to ModeParser.•••GetLastParse will be going away soon. Gravatar Peter Powell2018-08-131-1/+1
* Convert AWAY to use cross-module events and clean up slightly.•••OnSetAway has been replaced with four events. OnUserPreAway and OnUserPreBack can be used to deny an away state change and/or change the away message of a local user. OnUserAway and OnUserBack allow modules to be notified that a user's away state has changed. Gravatar Peter Powell2018-08-122-12/+33
* Pass the Extensible container to ExtensionItem::free().Gravatar Peter Powell2018-08-121-2/+2
* Remove support for static modules.•••This has been frequently broken in the past and as far as I know is used by literally nobody. Also, even if all modules are compiled into the core any libraries linked against are and have always been linked dynamically making this unusable on platforms without dynamic libraries. Gravatar Peter Powell2018-07-311-4/+0
* Rename User::fullname to realname and make it private.Gravatar Peter Powell2018-07-304-7/+8
* Replace most usages of "GECOS" with "real" or "real name".Gravatar Peter Powell2018-07-302-3/+3
* Use CommandBase::Params instead of std::vector<std::string>.•••This is presently a typedef but will soon be replaced with a class that encapsulates both tags and parameters. Gravatar Peter Powell2018-07-2648-112/+112
* Remove Log() calls made unnecessary by the previous commit.Gravatar Peter Powell2018-07-202-8/+0
* Initial support for listening on UNIX socket endpoints.Gravatar Peter Powell2018-07-181-0/+7
* Add the family() member to the sockaddrs union.Gravatar Peter Powell2018-07-182-6/+6
* Merge branch 'insp20' into master.Gravatar Peter Powell2018-07-151-1/+0
* Implement support for the WHOX extension.•••This is a massive rewrite of core_who which was initially developed by Adam in 2014. I have rebased and cleaned it up and tightened up compliance with the specifications. Co-authored-by: Adam <Adam@anope.org> Gravatar Peter Powell2018-07-121-282/+469