| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add internal serialisations of the DCC allow and silence lists. | 2019-09-03 | 1 | -6/+83 | |
| | | |||||
| * | When silence mask is prefixed by + or -, it should only remove the first ↵ | 2019-09-02 | 1 | -1/+1 | |
| | | | | | character, not the entire string (#1698). | ||||
| * | Replace large if/else blocks for target.type with switches (#1668). | 2019-06-24 | 1 | -22/+28 | |
| | | |||||
| * | Copy the silence flags when sending update notifications. | 2019-05-17 | 1 | -1/+1 | |
| | | | | | This fixes a crash bug in the silence module on some versions of GCC. | ||||
| * | Some more text fixes and improvements (#1618). | 2019-04-28 | 1 | -5/+5 | |
| | | |||||
| * | Textual improvements and fixes such as typos, casing, etc. (#1612) | 2019-04-28 | 1 | -2/+2 | |
| | | |||||
| * | Add the new implementation of the silence module. | 2019-04-18 | 1 | -0/+438 | |
| | | | | | | | | | This module has significant improvements on the previous one: * Flags which actually make sense. * Better compatibility with other SILENCE implementations. * Support for blocking CTCPs. * Support for blocking TAGMSGs. | ||||
| * | Remove m_silence pending a complete rewrite. | 2019-04-18 | 1 | -386/+0 | |
| | | |||||
| * | Various text improvements: consistency, syntax, help and doc updates/fixes. | 2019-02-18 | 1 | -3/+3 | |
| | | |||||
| * | Use CommandBase::Params instead of std::vector<std::string>. | 2018-07-26 | 1 | -4/+5 | |
| | | | | | | This is presently a typedef but will soon be replaced with a class that encapsulates both tags and parameters. | ||||
| * | Use !empty() instead of 'size() > 0' when checking parameter count. | 2018-07-03 | 1 | -2/+2 | |
| | | |||||
| * | Add ConfigTag::getUInt for reading unsigned config values. | 2018-04-16 | 1 | -4/+1 | |
| | | |||||
| * | Add names for a bunch of numerics. | 2018-02-02 | 1 | -7/+18 | |
| | | |||||
| * | Rework message handling. | 2018-01-06 | 1 | -6/+6 | |
| | | | | | | | | | | | | | | - Move all message-related types to their own header to make moving them to a cross-module events easier. - Rename OnUserMessage to OnUserPostMessage. - Rename OnText to OnUserMessage. - Replace the dest, target_type, and status parameters with the MessageTarget class. - Replace the text, exempt_list, and msgtype parameters with the MessageDetails struct. - Add echooriginal and originaltext to the MessageDetails struct to allow spam filtering to not be broken by cap echo-message. | ||||
| * | Add the override keyword in places that it is missing. | 2017-11-21 | 1 | -3/+3 | |
| | | | | | GCCs warnings for this are much better than Clangs. | ||||
| * | Switch to irc::equals() from irc::string in modules that use it for ↵ | 2016-08-22 | 1 | -4/+4 | |
| | | | | | comparing names of IRC objects | ||||
| * | Simplify GetRouting() methods doing unicast | 2016-03-29 | 1 | -4/+1 | |
| | | |||||
| * | Convert WriteNumeric() calls to pass the parameters of the numeric as method ↵ | 2016-02-25 | 1 | -7/+7 | |
| | | | | | parameters | ||||
| * | m_silence Change silencelist type to vector | 2015-06-03 | 1 | -3/+3 | |
| | | |||||
| * | m_silence Remove unused parameters from OnBuildExemptList and rename it | 2015-06-03 | 1 | -2/+2 | |
| | | |||||
| * | modules/m_silence: Allow U-lined services to bypass silence masks | 2015-02-05 | 1 | -1/+9 | |
| | | | | | | Adds a config entry (silence->exemptuline) that specifies whether users on U-lined servers can bypass silence masks. | ||||
| * | Specify which Extensible subclass an ExtensionItem is valid for | 2015-01-18 | 1 | -1/+2 | |
| | | |||||
| * | Reduce std::string::substr() usage | 2015-01-10 | 1 | -1/+1 | |
| | | | | | substr() returns a new string while erase() and assign() modify the existing one | ||||
| * | Remove typedef UserMembCIter, use Channel::MemberMap::const_iterator instead | 2014-07-14 | 1 | -1/+1 | |
| | | |||||
| * | Rename UserMembList to Channel::MemberMap, switch all code to use it | 2014-07-14 | 1 | -1/+1 | |
| | | |||||
| * | Change return type of Channel::GetUsers() to reference from pointer as it is ↵ | 2014-07-14 | 1 | -2/+2 | |
| | | | | | never NULL | ||||
| * | Change allocation of InspIRCd::Parser to be physically part of the object ↵ | 2014-06-13 | 1 | -1/+1 | |
| | | | | | containing it | ||||
| * | Merge insp20 | 2014-01-21 | 1 | -2/+2 | |
| |\ | |||||
| | * | Fix m_silence looking for maxentries in <showwhois> instead of <silence>. | 2013-10-26 | 1 | -1/+1 | |
| | | | | | | | | | Fixes issue #644. | ||||
| | * | Improve support for rarely used compilers, EKOPath in this case. | 2013-08-31 | 1 | -1/+1 | |
| | | | |||||
| * | | Stop null checking pointers that are always valid | 2014-01-09 | 1 | -8/+1 | |
| | | | |||||
| * | | Introduce Server class | 2014-01-05 | 1 | -1/+1 | |
| | | | | | | | | | | | - Replaces std::string server in User - Replaces InspIRCd::ULine() and SilentULine() | ||||
| * | | Use WriteNumeric() everywhere we send numerics and include the user's nick ↵ | 2013-11-12 | 1 | -7/+7 | |
| | | | | | | | | | automatically | ||||
| * | | Automatically register ServiceProviders created by modules | 2013-09-08 | 1 | -7/+0 | |
| | | | |||||
| * | | Replace OnRehash() with ReadConfig() that is called on boot, on module load ↵ | 2013-08-30 | 1 | -2/+1 | |
| | | | | | | | | | | | | | and on rehash This eliminates the need for calling OnRehash() in init() | ||||
| * | | Automatically attach modules to events | 2013-08-04 | 1 | -3/+0 | |
| | | | |||||
| * | | Remove $Core and $Mod* comments apart from $ModDep. | 2013-07-04 | 1 | -2/+0 | |
| | | | |||||
| * | | Remove TR_END, remove TRANSLATEx() from commands that do not need it | 2013-06-13 | 1 | -2/+1 | |
| | | | |||||
| * | | Remove OnUserPreNotice and OnUserNotice hooks, add MessageType argument to ↵ | 2013-05-20 | 1 | -14/+4 | |
| | | | | | | | | | | | | | OnUserMessage and OnUserPreMessage All modules (except m_nonotice) that perform filtering on messages have common logic for handling PRIVMSGs and NOTICEs and most of them run the exact same code in both cases | ||||
| * | | Tidy up keywords on module methods. | 2013-05-15 | 1 | -7/+7 | |
| | | | | | | | | | | | - Remove virtual keyword from a ton of methods which don't need it. - Add override keyword to a ton of methods which do need it. | ||||
| * | | Add method for writing server notices. | 2013-05-14 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | This allows us to send a server notice to a user without worrying about whether they are registered or not. If a user receives a server notice and they are not registered then the nickname field will contain an asterisk instead of their nick name. | ||||
| * | | Convert ISUPPORT to use a map instead of a string. | 2013-04-11 | 1 | -3/+3 | |
| | | | |||||
| * | | Whitespace and empty destructor removal, minor coding style changes | 2013-04-01 | 1 | -4/+0 | |
| |/ | |||||
| * | Add a flag to Command that controls whether an empty last parameter is ↵ | 2012-12-15 | 1 | -0/+1 | |
| | | | | | allowed or not | ||||
| * | Register all commands, modes and extensions using AddService() | 2012-12-02 | 1 | -3/+3 | |
| | | | | | AddService() throws an exception if an item cannot be registered, modules no longer need to worry about AddMode() etc. failing | ||||
| * | Dynamically determine the size of the eventlist[] passed to Attach() | 2012-12-02 | 1 | -1/+1 | |
| | | | | | m_sqlauth was attached to I_OnUserDisconnect but didn't provide a handler for it, remove | ||||
| * | Attach to events and register services in init() | 2012-12-02 | 1 | -0/+4 | |
| | | |||||
| * | Remove usage of the deprecated ConfigReader | 2012-11-12 | 1 | -2/+1 | |
| | | |||||
| * | Fix more undefined behavior caused by referencing the returned buffer by ↵ | 2012-09-30 | 1 | -5/+9 | |
| | | | | | | | std::string::c_str() when the object is temporary See 83c7cc45daf6fb1f8c36f15297a4657e45a34e88 | ||||
| * | Replace copyright headers with headers granting specific authors copyright | 2012-04-19 | 1 | -8/+18 | |
| | | |||||
