| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Merge branch 'insp3' into master. | 2022-04-29 | 1 | -1/+1 | |
| |\ | |||||
| | * | Update copyright headers. | 2022-04-28 | 1 | -1/+1 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2022-03-11 | 1 | -8/+4 | |
| |\| | |||||
| | * | Use UCHAR_MAX instead of raw sizes in channames. | 2022-03-11 | 1 | -4/+4 | |
| | | | | | | | | | This matches other code that does similar things. | ||||
| | * | Only set the chanlog channel name handler after reading the config. | 2022-03-11 | 1 | -5/+1 | |
| | | | | | | | | | | | Fixes IsChannel returning false for a valid channel name because the bitset is empty on server boot. | ||||
| * | | Abolish the infernal space before accessibility keywords. | 2022-01-25 | 1 | -2/+2 | |
| | | | |||||
| * | | Apply the final keyword to all module classes where appropriate. | 2021-10-04 | 1 | -1/+1 | |
| | | | |||||
| * | | Mark all module classes as final. | 2021-10-01 | 1 | -1/+2 | |
| | | | |||||
| * | | Added -Wshorten-64-to-32 and fixed all warnings. | 2021-05-30 | 1 | -2/+2 | |
| | | | |||||
| * | | Add ChannelManager::IsPrefix. | 2021-05-08 | 1 | -1/+1 | |
| | | | |||||
| * | | Move channel logic from InspIRCd to the new ChannelManager class. | 2021-05-08 | 1 | -6/+6 | |
| | | | |||||
| * | | Switch simple iterator loops to use range-based for loops. | 2021-04-07 | 1 | -7/+7 | |
| | | | |||||
| * | | Refactor classbase/CullResult into Cullable/Cullable::Result. | 2021-03-02 | 1 | -2/+2 | |
| | | | |||||
| * | | Rename ChanMax to MaxChannel for consistency with the other limits. | 2020-11-27 | 1 | -1/+1 | |
| | | | |||||
| * | | Convert ConfigTag from reference<> to std::shared_ptr<>. | 2020-10-31 | 1 | -1/+1 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2020-04-11 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update the module descriptions using mkversion. | 2020-04-10 | 1 | -1/+1 | |
| | | | |||||
| * | | Improve storage of module description, flags, and link data. | 2020-04-11 | 1 | -6/+2 | |
| | | | |||||
| * | | Use C++11 inline initialisation for class members. | 2020-02-06 | 1 | -2/+1 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2020-01-17 | 1 | -0/+5 | |
| |\| | |||||
| | * | Update copyright headers. | 2020-01-11 | 1 | -0/+5 | |
| | | | |||||
| * | | ModeParser: remove fakederef. | 2019-02-07 | 1 | -1/+1 | |
| | | | |||||
| * | | Replace the override macro with the override keyword. | 2019-01-25 | 1 | -5/+5 | |
| | | | |||||
| * | | Replace the TR1NS macro with the std namespace. | 2019-01-25 | 1 | -1/+1 | |
| |/ | |||||
| * | Convert IsChannel to std::function. | 2017-11-25 | 1 | -5/+4 | |
| | | |||||
| * | Add the override keyword in places that it is missing. | 2017-11-21 | 1 | -1/+1 | |
| | | | | | GCCs warnings for this are much better than Clangs. | ||||
| * | Replace irc::modestacker usage with the new ModeParser::Process() | 2014-09-03 | 1 | -5/+6 | |
| | | |||||
| * | Remove typedef UserMembIter, use Channel::MemberMap::iterator instead | 2014-07-14 | 1 | -2/+2 | |
| | | | | | Remove the now unused UserMembList typedef too | ||||
| * | 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 | -2/+2 | |
| | | |||||
| * | Change return type of Channel::GetUsers() to reference from pointer as it is ↵ | 2014-07-14 | 1 | -2/+2 | |
| | | | | | never NULL | ||||
| * | Use the iterator version of Channel::KickUser() in a few places | 2014-06-10 | 1 | -4/+4 | |
| | | |||||
| * | m_channames Remove temporary vector from ValidateChans() | 2014-06-07 | 1 | -9/+7 | |
| | | |||||
| * | m_channames Call ValidateChans() from cull() on unload | 2014-06-07 | 1 | -1/+2 | |
| | | | | | | | | | | This ensures that if ValidateChans() removes everyone from a channel the channel is added to the cull list at the right time, that is, before the destruction of objects begin. The core IsChannel() is less strict than us regardless of our configuration (for now) but nevertheless this is the correct behavior. | ||||
| * | Add InspIRCd::GetChans(), remove ChannelCount() | 2014-03-14 | 1 | -1/+2 | |
| | | |||||
| * | Remove some dead code | 2014-01-31 | 1 | -2/+0 | |
| | | |||||
| * | Merge insp20 | 2014-01-21 | 1 | -0/+6 | |
| |\ | |||||
| | * | Allow ranges beginning with 0 in m_channames | 2013-12-21 | 1 | -0/+6 | |
| | | | |||||
| * | | 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() | ||||
| * | | 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 | -2/+0 | |
| | | | |||||
| * | | Replace hardcoded mode letters, part 2 | 2013-07-19 | 1 | -3/+7 | |
| | | | | | | | | | This changes all remaining Channel::IsModeSet() and Channel::GetModeParameter() calls to use ModeReferences for modes that were created by other modules or the core | ||||
| * | | Remove $Core and $Mod* comments apart from $ModDep. | 2013-07-04 | 1 | -2/+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.) | ||||
| * | | Merge insp20 | 2013-06-06 | 1 | -2/+10 | |
| |\| | |||||
| | * | m_channames Fix iteration in ValidateChans() | 2013-05-18 | 1 | -2/+10 | |
| | | | | | | | | | Spotted by @Adam- | ||||
| * | | Remove the size argument from IsChannel and IsNick. | 2013-05-18 | 1 | -6/+6 | |
| | | | | | | | | | | | 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 | -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. | ||||
| * | | Whitespace and empty destructor removal, minor coding style changes | 2013-04-01 | 1 | -1/+0 | |
| | | | |||||
| * | | Change IsNickHandler()/IsIdentHandler()/IsChannelHandler() to use C++ ↵ | 2013-04-01 | 1 | -15/+14 | |
| |/ | | | | strings as arguments instead of C strings | ||||
