| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Convert all core ExtensionItem code away from {un,}serialize. | 2019-08-07 | 1 | -13/+11 | |
| | | |||||
| * | Textual improvements and fixes such as typos, casing, etc. (#1612) | 2019-04-28 | 1 | -2/+2 | |
| | | |||||
| * | Update trivially-modifiable modules to handle tag messages. | 2019-04-16 | 1 | -3/+17 | |
| | | |||||
| * | Use a consistent naming scheme for operator privileges. | 2019-04-04 | 1 | -1/+1 | |
| | | | | | | - users/callerid-override is now users/ignore-callerid. - users/privdeaf-override is now users/ignore-privdeaf. | ||||
| * | Various text improvements: consistency, syntax, help and doc updates/fixes. | 2019-02-18 | 1 | -2/+2 | |
| | | |||||
| * | Fix conversion issues by replacing ConvToInt with ConvToNum<T>. | 2018-12-12 | 1 | -1/+1 | |
| | | | | | | | | 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. | ||||
| * | Allow modules to check if a user is on a callerid accept list. | 2018-12-09 | 1 | -0/+23 | |
| | | |||||
| * | Raise the default max number of ACCEPT entries from 16 to 30. | 2018-12-09 | 1 | -1/+1 | |
| | | |||||
| * | Pass the Extensible container to ExtensionItem::free(). | 2018-08-12 | 1 | -2/+2 | |
| | | |||||
| * | 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. | ||||
| * | Add ConfigTag::getUInt for reading unsigned config values. | 2018-04-16 | 1 | -1/+1 | |
| | | |||||
| * | Use an oper priv instead of a config flag for overriding callerid. | 2018-04-16 | 1 | -3/+1 | |
| | | |||||
| * | Send the ACCEPT and KEYLEN ISUPPORT tokens. | 2018-02-07 | 1 | -0/+1 | |
| | | | | | | | | | | | | - The ACCEPT=[count] token specifies the maximum amount of nicks which can be added to a m_callerid accept list. This token was added by ircd-ratbox in 3.0.9. - The KEYLEN=[length] token specifies the maximum length of a channel key. This token was added by ircd-ratbox in 3.1 beta. For more info see http://defs.ircdocs.horse/defs/isupport.html | ||||
| * | Rework message handling. | 2018-01-06 | 1 | -3/+3 | |
| | | | | | | | | | | | | | | - 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. | ||||
| * | Don't hardcode mode characters which are sent in 005 tokens. | 2017-12-29 | 1 | -1/+1 | |
| | | |||||
| * | Add the override keyword in places that it is missing. | 2017-11-21 | 1 | -6/+6 | |
| | | | | | GCCs warnings for this are much better than Clangs. | ||||
| * | Fix a ton of -Wsign-conversion warnings. | 2017-11-17 | 1 | -1/+1 | |
| | | |||||
| * | Only subclass Simple{Channel,User}ModeHandler when necessary. | 2017-11-13 | 1 | -8/+4 | |
| | | |||||
| * | Hide User#host and User#dhost and use accessors to modify them. | 2017-10-28 | 1 | -1/+1 | |
| | | | | | | This removes the need to invalidate the cache after changing a user's hostname. | ||||
| * | Convert a bunch of time-related config options to getDuration. | 2017-09-03 | 1 | -1/+1 | |
| | | |||||
| * | Add User::WriteRemoteNumeric() and switch code using SendText() to send ↵ | 2016-02-25 | 1 | -2/+2 | |
| | | | | | numerics to it | ||||
| * | Convert WriteNumeric() calls to pass the parameters of the numeric as method ↵ | 2016-02-25 | 1 | -8/+8 | |
| | | | | | parameters | ||||
| * | Merge insp20 | 2016-02-22 | 1 | -4/+5 | |
| |\ | |||||
| | * | m_callerid Free old extension data before unserializing the new data | 2016-02-13 | 1 | -4/+5 | |
| | | | |||||
| * | | Remove some IS_SERVER() checks | 2015-12-07 | 1 | -2/+2 | |
| | | | | | | | | | | | - 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 | ||||
| * | | m_callerid Prioritize after other mods for the OnUserPreMessage hook | 2015-06-03 | 1 | -0/+6 | |
| | | | | | | | | | Issue #1051 | ||||
| * | | Specify which Extensible subclass an ExtensionItem is valid for | 2015-01-18 | 1 | -1/+1 | |
| | | | |||||
| * | | Change type of some associative containers to their flat versions, including ↵ | 2014-12-15 | 1 | -1/+1 | |
| | | | | | | | | | Extensible storage | ||||
| * | | m_callerid Change CallerIdDataSet (wholistsme) to be a vector | 2014-12-10 | 1 | -3/+3 | |
| | | | |||||
| * | | m_callerid Add typedefs for containers in callerid_data | 2014-12-10 | 1 | -6/+9 | |
| | | | |||||
| * | | m_callerid Simplify code interacting with containers | 2014-12-10 | 1 | -12/+3 | |
| | | | |||||
| * | | Add stdalgo::erase() and use it to simplify code | 2014-11-01 | 1 | -9/+2 | |
| | | | |||||
| * | | Merge insp20 | 2014-07-25 | 1 | -1/+1 | |
| |\| | |||||
| | * | Correct the syntax messages of a few modules. | 2014-04-12 | 1 | -1/+1 | |
| | | | |||||
| * | | Merge insp20 | 2014-01-21 | 1 | -4/+9 | |
| |\| | |||||
| | * | Use FindNickOnly() in a few more places if a local user is performing an ↵ | 2014-01-19 | 1 | -3/+14 | |
| | | | | | | | | | action to prevent UID walking | ||||
| | * | Fix ACCEPT propagation bug when it got a nick prefixed with + | 2013-12-09 | 1 | -0/+3 | |
| | | | | | | | | | | | Fixes #696 Does not apply to 2.2 due to Attila's rewrite of the module | ||||
| * | | Remove PreText()-like functions | 2014-01-08 | 1 | -9/+5 | |
| | | | | | | | | | Do processing in OnUserPreMessage() | ||||
| * | | Fix a few issues | 2013-11-21 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | - Rehash notices - Modes in CAPAB - GetTargetAndAction() not being static in m_callerid - Loading custom configuration files using --config. (@SaberUK) - ServerConfig::Read not using std::endl. (@SaberUK) - Out of date comments in opers.conf.example, issue #624 | ||||
| * | | These two numerics are supposed to use SentText() as they can go to remote ↵ | 2013-11-12 | 1 | -2/+2 | |
| | | | | | | | | | users... | ||||
| * | | Use WriteNumeric() everywhere we send numerics and include the user's nick ↵ | 2013-11-12 | 1 | -11/+23 | |
| | | | | | | | | | 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 | -3/+1 | |
| | | | | | | | | | | | | | and on rehash This eliminates the need for calling OnRehash() in init() | ||||
| * | | Automatically attach modules to events | 2013-08-04 | 1 | -3/+0 | |
| | | | |||||
| * | | Change modules to use the MODNAME constant when logging. | 2013-08-04 | 1 | -5/+5 | |
| | | | | | | | | | | | | | | | | | The majority of modules were logging with their module name as the log type. There was a few places which were logging to a non-name type but, with the exception of CONFIG, those messages are so uncommon that it doesn't make sense to use a seperate type for them. | ||||
| * | | Remove $Core and $Mod* comments apart from $ModDep. | 2013-07-04 | 1 | -2/+0 | |
| | | | |||||
| * | | Replace hardcoded mode letters passed to IsModeSet() and GetModeParameter() ↵ | 2013-07-01 | 1 | -1/+1 | |
| | | | | | | | | | with ModeHandlers, part 1 | ||||
| * | | Remove TR_END, remove TRANSLATEx() from commands that do not need it | 2013-06-13 | 1 | -1/+1 | |
| | | | |||||
| * | | m_callerid Route ACCEPT to the server of the target user only, do not send ↵ | 2013-06-12 | 1 | -53/+72 | |
| | | | | | | | | | | | | | METADATA at all ACCEPTs coming from 2.0 servers with a list of uuids are broadcast, as before | ||||
| * | | CommandParser::LoopCall() changes | 2013-06-12 | 1 | -1/+1 | |
| | | | | | | | | | | | | | - Change function to be static, return a bool - Do not filter duplicates when there are 2 lists (JOIN) - Remove validation of 'extra' parameter, caller must pass either a valid index or -1 | ||||
