| Commit message (Expand) | Author | Age | Files | Lines |
| * | 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.
| Peter Powell | 2018-07-26 | 1 | -1/+1 |
| * | Add the override keyword in places that it is missing.•••GCCs warnings for this are much better than Clangs.
| Peter Powell | 2017-11-21 | 1 | -2/+2 |
| * | Add support for setting the unset rank in ModeHandler. | Peter Powell | 2017-11-06 | 1 | -1/+1 |
| * | Add CXX11_OVERRIDE to overridden members that lack it.•••This fixes a ton of warnings when building on compilers that
default to C++11 or newer.
| Peter Powell | 2017-07-12 | 1 | -1/+1 |
| * | Penalize commands that had 0 penalty | Attila Molnar | 2016-12-30 | 1 | -1/+1 |
| * | Change Membership:hasMode() to accept a PrefixMode | Attila Molnar | 2016-08-30 | 1 | -1/+1 |
| * | Send NOTICEs to local channel members with Channel::WriteNotice() | Attila Molnar | 2016-03-05 | 1 | -3/+3 |
| * | Convert WriteNumeric() calls to pass the parameters of the numeric as method ... | Attila Molnar | 2016-02-25 | 1 | -1/+1 |
| * | Replace irc::modestacker usage with the new ModeParser::Process() | Attila Molnar | 2014-09-03 | 1 | -9/+8 |
| * | m_ojoin Change allocation of NetworkPrefix to be physically part of the objec... | Attila Molnar | 2014-08-06 | 1 | -23/+8 |
| * | m_ojoin Leave it to the core throw an exception if the prefix char is in use | Attila Molnar | 2014-08-06 | 1 | -2/+0 |
| * | Pass prefix rank and prefix char to PrefixMode constructor | Attila Molnar | 2014-08-06 | 1 | -3/+1 |
| * | Merge insp20 | Attila Molnar | 2014-07-25 | 1 | -1/+0 |
| |\ |
|
| | * | m_ojoin Remove pointless FindChan() call•••Found by Coverity, CID: 1135649
| Attila Molnar | 2014-04-13 | 1 | -1/+0 |
| * | | Use WriteNumeric() everywhere we send numerics and include the user's nick au... | Adam | 2013-11-12 | 1 | -1/+1 |
| * | | Create a base class for prefix modes•••Move Channel::SetPrefix() into Membership
| attilamolnar | 2013-09-11 | 1 | -10/+2 |
| * | | Automatically register ServiceProviders created by modules | attilamolnar | 2013-09-08 | 1 | -1/+0 |
| * | | Replace OnRehash() with ReadConfig() that is called on boot, on module load a...•••This eliminates the need for calling OnRehash() in init()
| attilamolnar | 2013-08-30 | 1 | -4/+1 |
| * | | Fix a couple of issues•••- 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
| attilamolnar | 2013-08-08 | 1 | -1/+1 |
| * | | Automatically attach modules to events | attilamolnar | 2013-08-04 | 1 | -3/+0 |
| * | | m_ojoin Stop hardcoding +Y, move global vars into a class, move initializatio... | attilamolnar | 2013-07-19 | 1 | -24/+22 |
| * | | Remove $Core and $Mod* comments apart from $ModDep. | Peter Powell | 2013-07-04 | 1 | -19/+1 |
| * | | Remove TR_END, remove TRANSLATEx() from commands that do not need it | attilamolnar | 2013-06-13 | 1 | -1/+0 |
| * | | Introduce ModeProcessFlags, can be passed to ModeParser::Process() to indicat...•••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.)
| attilamolnar | 2013-06-13 | 1 | -1/+1 |
| * | | Store prefix rank in a ModeHandler field, change ModeHandler::GetPrefixRank()... | attilamolnar | 2013-06-06 | 1 | -5/+1 |
| * | | Simplify user mode removal via ModeHandler::RemoveMode()•••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
| attilamolnar | 2013-05-27 | 1 | -4/+0 |
| * | | Deduplicate RemoveMode() implementations•••The default (core) implementation can now remove prefix modes
The modestacker parameter is now mandatory
| attilamolnar | 2013-05-27 | 1 | -30/+0 |
| * | | Remove the size argument from IsChannel and IsNick.•••There was only one case (which was probably an error) where these
methods were not set to their ServerLimits value.
| Peter Powell | 2013-05-18 | 1 | -1/+1 |
| * | | Tidy up keywords on module methods.•••- 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.
| Peter Powell | 2013-05-15 | 1 | -5/+5 |
| * | | Add method for writing server notices.•••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.
| Peter Powell | 2013-05-14 | 1 | -1/+1 |
| * | | Channel::JoinUser() and Channel::ForceChan() changes•••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
| attilamolnar | 2013-04-13 | 1 | -5/+7 |
| * | | OnUserPreJoin is a local-only hook, change User* parameter to LocalUser* | attilamolnar | 2013-04-13 | 1 | -1/+1 |
| * | | Whitespace and empty destructor removal, minor coding style changes | attilamolnar | 2013-04-01 | 1 | -1/+0 |
| * | | Purge references to the deprecated GetStackedLine method. | Peter Powell | 2013-04-01 | 1 | -1/+1 |
| * | | Change channel name parameter of Module::OnUserPreJoin() and Channel::JoinUse... | attilamolnar | 2013-04-01 | 1 | -1/+1 |
| |/ |
|
| * | Dynamically determine the size of the eventlist[] passed to Attach()•••m_sqlauth was attached to I_OnUserDisconnect but didn't provide a handler for it, remove
| attilamolnar | 2012-12-02 | 1 | -1/+1 |
| * | ServerConfig::ServerName is a std::string, don't call .c_str() on it when pas... | attilamolnar | 2012-11-19 | 1 | -1/+1 |
| * | m_ojoin Fix giving +Y only instead of +Yo when <ojoin:op> is on and the user ... | attilamolnar | 2012-10-24 | 1 | -1/+3 |
| * | Remove superfluous std::string()s | attilamolnar | 2012-10-12 | 1 | -4/+4 |
| * | Replace copyright headers with headers granting specific authors copyright | Robby- | 2012-04-19 | 1 | -8/+14 |
| * | Typofix in m_ojoin•••In m_ojoin 'business' was miss-spelled.
| Rutger | 2012-04-01 | 1 | -1/+1 |
| * | Fix typo•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12397 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2010-02-07 | 1 | -1/+1 |
| * | Fix crash on kick when +J is set, +misc cleanup•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12396 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2010-02-07 | 1 | -8/+5 |
| * | Remove incorrect access checks from m_ojoin•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12377 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2010-02-05 | 1 | -53/+10 |
| * | Fix empty FMODE being sent if SendMode mode changes•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12323 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2010-01-28 | 1 | -2/+1 |
| * | Move initialization that throws configuration exceptions to init()•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12279 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2010-01-17 | 1 | -7/+6 |
| * | Remove VF_COMMON from mode-provider modules (no longer needed due to better C...•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12263 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2010-01-15 | 1 | -1/+1 |
| * | ...because every now and again, i have to do a massive commit.•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12248 e03df62e-2008-0410-955e-edbf42e46eb7
| brain | 2010-01-11 | 1 | -1/+1 |
| * | Fixes from vtable cross-check•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11977 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2009-10-25 | 1 | -2/+2 |
| * | Get rid of ModePair•••git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11963 e03df62e-2008-0410-955e-edbf42e46eb7
| danieldg | 2009-10-24 | 1 | -25/+0 |