| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fixes by misspell-fixer | 2020-04-21 | 1 | -1/+1 | |
| | | |||||
| * | Update the module descriptions using mkversion. | 2020-04-10 | 1 | -1/+1 | |
| | | |||||
| * | Fix leaking the dccallow list instead of setting it in FromInternal. | 2020-02-15 | 1 | -0/+2 | |
| | | |||||
| * | Update copyright headers. | 2020-01-31 | 1 | -1/+1 | |
| | | |||||
| * | dccallow: use IsCTCP instead of parsing the message manually. | 2020-01-23 | 1 | -6/+7 | |
| | | |||||
| * | dccallow: Use irc::equals for messages received over IRC. | 2020-01-23 | 1 | -2/+2 | |
| | | |||||
| * | Use irc::equals instead of strcasecmp where appropriate. | 2020-01-17 | 1 | -2/+2 | |
| | | |||||
| * | Update copyright headers. | 2020-01-11 | 1 | -6/+12 | |
| | | |||||
| * | Add internal serialisations of the DCC allow and silence lists. | 2019-09-03 | 1 | -7/+76 | |
| | | |||||
| * | Some more text fixes and improvements (#1618). | 2019-04-28 | 1 | -1/+1 | |
| | | |||||
| * | Textual improvements and fixes such as typos, casing, etc. (#1612) | 2019-04-28 | 1 | -1/+1 | |
| | | |||||
| * | Start using DurationString() in X-line additions and | 2019-02-18 | 1 | -1/+1 | |
| | | | | | a few other modules where it fits better than just showing seconds. | ||||
| * | Various text improvements: consistency, syntax, help and doc updates/fixes. | 2019-02-18 | 1 | -3/+3 | |
| | | |||||
| * | Only parse valid durations, don't treat invalid multipliers as seconds (#1538) | 2018-12-21 | 1 | -1/+5 | |
| | | |||||
| * | Make more modules rehash atomically (#1535) | 2018-12-19 | 1 | -12/+14 | |
| | | | | | | Have each module validate the values it loads before setting them, so any errors don't result in partial application of the configs | ||||
| * | Fix not rejecting invalid durations in DCCALLOW. | 2018-12-12 | 1 | -2/+3 | |
| | | |||||
| * | Fix a bunch more conflicting/unnamed numerics. | 2018-08-14 | 1 | -8/+9 | |
| | | |||||
| * | Use CommandBase::Params instead of std::vector<std::string>. | 2018-07-26 | 1 | -2/+2 | |
| | | | | | | This is presently a typedef but will soon be replaced with a class that encapsulates both tags and parameters. | ||||
| * | Make more config stuff case insensitive. | 2018-07-24 | 1 | -1/+1 | |
| | | |||||
| * | Add ConfigTag::getUInt for reading unsigned config values. | 2018-04-16 | 1 | -1/+1 | |
| | | |||||
| * | Add names for a bunch of numerics. | 2018-02-02 | 1 | -14/+32 | |
| | | |||||
| * | 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 | -2/+2 | |
| | | | | | GCCs warnings for this are much better than Clangs. | ||||
| * | Fix a ton of -Wsign-conversion warnings. | 2017-11-17 | 1 | -3/+10 | |
| | | |||||
| * | Hide User#host and User#dhost and use accessors to modify them. | 2017-10-28 | 1 | -3/+3 | |
| | | | | | | This removes the need to invalidate the cache after changing a user's hostname. | ||||
| * | Add stdalgo::string::equalsci and use it instead of irc::string for ↵ | 2016-08-22 | 1 | -3/+3 | |
| | | | | | case-insensitive comparison | ||||
| * | Merge insp20 | 2016-08-17 | 1 | -12/+26 | |
| |\ | |||||
| | * | Fix dccallow to work with files with spaces in their names | 2016-02-18 | 1 | -12/+26 | |
| | | | |||||
| * | | Convert WriteNumeric() calls to pass the parameters of the numeric as method ↵ | 2016-02-25 | 1 | -15/+15 | |
| | | | | | | | | | parameters | ||||
| * | | m_dccallow Call WriteNumeric() in a loop when displaying help | 2016-02-24 | 1 | -19/+25 | |
| | | | |||||
| * | | Merge insp20 | 2016-02-22 | 1 | -0/+10 | |
| |\| | |||||
| | * | m_dccallow Add config option to control max entries on a list | 2016-02-12 | 1 | -1/+10 | |
| | | | | | | | | | Default to 20 | ||||
| * | | Remove some IS_SERVER() checks | 2015-12-07 | 1 | -1/+1 | |
| | | | | | | | | | | | - InspIRCd::FindUUID() and FindNick() no longer return FakeUsers so checking the user returned from those methods is needless - m_dccallow is calling FindNickOnly() so it had the check needlessly | ||||
| * | | Merge insp20 | 2015-04-20 | 1 | -0/+6 | |
| |\| | |||||
| | * | m_dccallow Validate tokens before use | 2015-04-16 | 1 | -0/+6 | |
| | | | |||||
| * | | Specify which Extensible subclass an ExtensionItem is valid for | 2015-01-18 | 1 | -1/+1 | |
| | | | |||||
| * | | Reduce std::string::substr() usage | 2015-01-10 | 1 | -1/+1 | |
| | | | | | | | | | substr() returns a new string while erase() and assign() modify the existing one | ||||
| * | | Add stdalgo::erase() and use it to simplify code | 2014-11-01 | 1 | -5/+1 | |
| | | | |||||
| * | | Merge insp20 | 2014-07-25 | 1 | -2/+2 | |
| |\| | |||||
| | * | Correct the syntax messages of a few modules. | 2014-04-12 | 1 | -2/+2 | |
| | | | |||||
| * | | Merge insp20 | 2014-01-21 | 1 | -0/+4 | |
| |\| | |||||
| | * | m_dccallow Increase penalty for /DCCALLOW help | 2014-01-19 | 1 | -0/+4 | |
| | | | |||||
| * | | Make various self contained methods static. | 2013-12-15 | 1 | -1/+1 | |
| | | | | | | | | | | | - InspIRCd::IsValidMask - InspIRCd::TimeString | ||||
| * | | Use WriteNumeric() everywhere we send numerics and include the user's nick ↵ | 2013-11-12 | 1 | -32/+32 | |
| | | | | | | | | | automatically | ||||
| * | | Change allocation of a few services to make use of auto registration | 2013-09-08 | 1 | -23/+17 | |
| | | | |||||
| * | | Automatically register ServiceProviders created by modules | 2013-09-08 | 1 | -1/+0 | |
| | | | |||||
| * | | Replace OnRehash() with ReadConfig() that is called on boot, on module load ↵ | 2013-08-30 | 1 | -7/+1 | |
| | | | | | | | | | | | | | and on rehash This eliminates the need for calling OnRehash() in init() | ||||
| * | | Automatically attach modules to events | 2013-08-04 | 1 | -2/+0 | |
| | | | |||||
| * | | Remove $Core and $Mod* comments apart from $ModDep. | 2013-07-04 | 1 | -2/+0 | |
| | | | |||||
| * | | Merge insp20 | 2013-06-06 | 1 | -1/+1 | |
| |\| | |||||
