| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Update copyright headers. | 2022-04-28 | 1 | -1/+1 | |
| | | |||||
| * | Add a method to ConfigTag to help with retrieving a single character. | 2022-04-10 | 1 | -1/+1 | |
| | | |||||
| * | Update copyright headers. | 2021-05-14 | 1 | -1/+1 | |
| | | |||||
| * | Send ERR_BADCHANMASK when trying to OJOIN/SAJOIN an invalid channel. | 2021-05-08 | 1 | -1/+1 | |
| | | |||||
| * | Use ChanModeReference for finding the op mode in ojoin. | 2020-05-29 | 1 | -4/+6 | |
| | | |||||
| * | Update the module descriptions using mkversion. | 2020-04-10 | 1 | -1/+1 | |
| | | |||||
| * | Fix unnecessary inlining in command handler constructors. | 2020-03-09 | 1 | -1/+2 | |
| | | |||||
| * | Update copyright headers. | 2020-01-31 | 1 | -1/+1 | |
| | | |||||
| * | Add Channel::WriteRemoteNotice and revert WriteNotice changes. | 2020-01-29 | 1 | -1/+1 | |
| | | | | | | | This is a partial reversion of 687778b72e. See also: #1749. | ||||
| * | Update copyright headers. | 2020-01-11 | 1 | -1/+4 | |
| | | |||||
| * | Allow Channel::WriteNotice send to other servers and status ranks. | 2019-11-17 | 1 | -5/+1 | |
| | | |||||
| * | Some more text fixes and improvements (#1618). | 2019-04-28 | 1 | -1/+1 | |
| | | |||||
| * | Use CommandBase::Params instead of std::vector<std::string>. | 2018-07-26 | 1 | -1/+1 | |
| | | | | | | 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. | 2017-11-21 | 1 | -2/+2 | |
| | | | | | GCCs warnings for this are much better than Clangs. | ||||
| * | Add support for setting the unset rank in ModeHandler. | 2017-11-06 | 1 | -1/+1 | |
| | | |||||
| * | Add CXX11_OVERRIDE to overridden members that lack it. | 2017-07-12 | 1 | -1/+1 | |
| | | | | | | This fixes a ton of warnings when building on compilers that default to C++11 or newer. | ||||
| * | Penalize commands that had 0 penalty | 2016-12-30 | 1 | -1/+1 | |
| | | |||||
| * | Change Membership:hasMode() to accept a PrefixMode | 2016-08-30 | 1 | -1/+1 | |
| | | |||||
| * | Send NOTICEs to local channel members with Channel::WriteNotice() | 2016-03-05 | 1 | -3/+3 | |
| | | |||||
| * | Convert WriteNumeric() calls to pass the parameters of the numeric as method ↵ | 2016-02-25 | 1 | -1/+1 | |
| | | | | | parameters | ||||
| * | Replace irc::modestacker usage with the new ModeParser::Process() | 2014-09-03 | 1 | -9/+8 | |
| | | |||||
| * | m_ojoin Change allocation of NetworkPrefix to be physically part of the ↵ | 2014-08-06 | 1 | -23/+8 | |
| | | | | | object containing it | ||||
| * | m_ojoin Leave it to the core throw an exception if the prefix char is in use | 2014-08-06 | 1 | -2/+0 | |
| | | |||||
| * | Pass prefix rank and prefix char to PrefixMode constructor | 2014-08-06 | 1 | -3/+1 | |
| | | |||||
| * | Merge insp20 | 2014-07-25 | 1 | -1/+0 | |
| |\ | |||||
| | * | m_ojoin Remove pointless FindChan() call | 2014-04-13 | 1 | -1/+0 | |
| | | | | | | | | | Found by Coverity, CID: 1135649 | ||||
| * | | Use WriteNumeric() everywhere we send numerics and include the user's nick ↵ | 2013-11-12 | 1 | -1/+1 | |
| | | | | | | | | | automatically | ||||
| * | | Create a base class for prefix modes | 2013-09-11 | 1 | -10/+2 | |
| | | | | | | | | | Move Channel::SetPrefix() into Membership | ||||
| * | | 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 | -4/+1 | |
| | | | | | | | | | | | | | and on rehash This eliminates the need for calling OnRehash() in init() | ||||
| * | | Fix a couple of issues | 2013-08-08 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | - Wrong doc for Snomask::GetDescription() - Incorrect idle time when WHOISing remote users - String + int = garbage - Remote MODE commands (user mode changes) being broadcast in addition to being forwarded - Incorrect revision being shown | ||||
| * | | Automatically attach modules to events | 2013-08-04 | 1 | -3/+0 | |
| | | | |||||
| * | | m_ojoin Stop hardcoding +Y, move global vars into a class, move ↵ | 2013-07-19 | 1 | -24/+22 | |
| | | | | | | | | | initialization code into init() | ||||
| * | | Remove $Core and $Mod* comments apart from $ModDep. | 2013-07-04 | 1 | -19/+1 | |
| | | | |||||
| * | | Remove TR_END, remove TRANSLATEx() from commands that do not need it | 2013-06-13 | 1 | -1/+0 | |
| | | | |||||
| * | | Introduce ModeProcessFlags, can be passed to ModeParser::Process() to ↵ | 2013-06-13 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | indicate local only mode changes and mode merges Change ProtocolInterface::SendMode() to take source and destination parameters, and call it from the mode parser whenever the mode change is global This deprecates the ambiguous InspIRCd::SendMode() and InspIRCd::SendGlobalMode() interface (the latter sent mode changes originating from local users twice, etc.) | ||||
| * | | Store prefix rank in a ModeHandler field, change ↵ | 2013-06-06 | 1 | -5/+1 | |
| | | | | | | | | | ModeHandler::GetPrefixRank() to be non-virtual | ||||
| * | | Simplify user mode removal via ModeHandler::RemoveMode() | 2013-05-27 | 1 | -4/+0 | |
| | | | | | | | | | | | The function does not need to be virtual because the core can remove any user mode using the default logic The optional modestack parameter was always NULL, so remove it | ||||
| * | | Deduplicate RemoveMode() implementations | 2013-05-27 | 1 | -30/+0 | |
| | | | | | | | | | | | The default (core) implementation can now remove prefix modes The modestacker parameter is now mandatory | ||||
| * | | Remove the size argument from IsChannel and IsNick. | 2013-05-18 | 1 | -1/+1 | |
| | | | | | | | | | | | There was only one case (which was probably an error) where these methods were not set to their ServerLimits value. | ||||
| * | | Tidy up keywords on module methods. | 2013-05-15 | 1 | -5/+5 | |
| | | | | | | | | | | | - 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. | ||||
| * | | Channel::JoinUser() and Channel::ForceChan() changes | 2013-04-13 | 1 | -5/+7 | |
| | | | | | | | | | | | | | Convert static Channel::ForceChan() to non-static Channel::ForceJoin() that joins a user to a channel, no permission checks The (static) Channel::JoinUser() now has a LocalUser parameter, and no longer have TS and bursting parameters. If the channel doesn't exist, it is created using current time as TS | ||||
| * | | OnUserPreJoin is a local-only hook, change User* parameter to LocalUser* | 2013-04-13 | 1 | -1/+1 | |
| | | | |||||
| * | | Whitespace and empty destructor removal, minor coding style changes | 2013-04-01 | 1 | -1/+0 | |
| | | | |||||
| * | | Purge references to the deprecated GetStackedLine method. | 2013-04-01 | 1 | -1/+1 | |
| | | | |||||
| * | | Change channel name parameter of Module::OnUserPreJoin() and ↵ | 2013-04-01 | 1 | -1/+1 | |
| |/ | | | | Channel::JoinUser() to std::string from char* | ||||
| * | 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 | ||||
| * | ServerConfig::ServerName is a std::string, don't call .c_str() on it when ↵ | 2012-11-19 | 1 | -1/+1 | |
| | | | | | passing it to Channel::WriteChannelWithServ, etc. | ||||
| * | m_ojoin Fix giving +Y only instead of +Yo when <ojoin:op> is on and the user ↵ | 2012-10-24 | 1 | -1/+3 | |
| | | | | | is already in the channel | ||||
