Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-01-28 | Add ParamMode::IsParameterSecret and remove special casing of keys. | Peter Powell | |
2018-10-21 | Fix warnings from Doxygen. | Peter Powell | |
2018-08-13 | Implement IRCv3 message tag support. | Peter Powell | |
Co-authored-by: Attila Molnar <attilamolnar@hush.com> | |||
2017-11-17 | Fix a ton of -Wsign-conversion warnings. | Peter Powell | |
2016-04-11 | Refactor topic setting logic to go through Channel::SetTopic() in all cases | Attila Molnar | |
- Pass topic set time and optionally the setter to SetTopic() - Don't do anything if the topic is changed by a local user to what it is currently | |||
2016-03-05 | Add Channel::WriteNotice() | Attila Molnar | |
2015-12-28 | Return true from Channel::PartUser() if the user was on the channel | Attila Molnar | |
2015-11-02 | Rewrite invite system | Attila Molnar | |
- Moved out of core, now lives entirely in core_channel - Accessible using the provided API after including the appropriate header - Invites are stored in an extension attached to LocalUser/Channel objects, they no longer need special handling when destroying these objects or when lowering TS - Expiration of timed invites are implemented using Timers - When creating a new invite let a non-timed invite override a timed one | |||
2015-05-16 | Move Channel::UserList() from core to cmd_names | Attila Molnar | |
2014-09-27 | Store Membership objects physically in the nodes of Channel::MemberMap | Attila Molnar | |
2014-07-14 | Remove typedef UserMembIter, use Channel::MemberMap::iterator instead | Attila Molnar | |
Remove the now unused UserMembList typedef too | |||
2014-07-14 | Rename UserMembList to Channel::MemberMap, switch all code to use it | Attila Molnar | |
2014-07-14 | Change return type of Channel::GetUsers() to reference from pointer as it is ↵ | Attila Molnar | |
never NULL | |||
2014-06-10 | Return the newly created Membership object from Channel::ForceJoin() | Attila Molnar | |
2014-06-10 | Change Channel::KickUser() to accept an iterator, add overload that accepts ↵ | Attila Molnar | |
a User Remove srcmemb parameter | |||
2014-04-09 | Avoid double Membership lookup in Channel::UserList() | Attila Molnar | |
The user is always inside if UserList() is called from ForceJoin() and the HasUser() result obtained in the /NAMES handler can be reused | |||
2014-02-21 | Index Channel::modes and User::modes with the id of the mode instead of its ↵ | Attila Molnar | |
letter | |||
2014-02-15 | Add ParamModeBase and ParamMode, change all parameter modes to inherit from ↵ | Attila Molnar | |
ParamMode - Type of the extension used to store data is a template parameter - The extension is automatically unset when the mode is unset - Handlers inheriting from ParamMode have to provide OnSet() and SerializeParam(); may optionally provide OnUnset() - Transparently handle the case when OnSet() modifies the mode parameter - Remove Channel::custom_mode_params map; ask the mode handlers to serialize their parameters instead | |||
2014-02-14 | Move GetAllPrefixChars() from Channel to Membership | Attila Molnar | |
2014-02-14 | Move GetPrefixChar() from Channel to Membership | Attila Molnar | |
2014-01-24 | Convert InviteBase::invites to an intrusively linked list | Attila Molnar | |
2013-09-11 | Create a base class for prefix modes | attilamolnar | |
Move Channel::SetPrefix() into Membership | |||
2013-08-12 | Clean up a few constructors | attilamolnar | |
Do not silently correct a zero TS in Channel::Channel(); require callers to supply a valid TS instead | |||
2013-07-19 | Replace hardcoded mode letters, part 2 | attilamolnar | |
This changes all remaining Channel::IsModeSet() and Channel::GetModeParameter() calls to use ModeReferences for modes that were created by other modules or the core | |||
2013-07-01 | Replace hardcoded mode letters passed to IsModeSet() and GetModeParameter() ↵ | attilamolnar | |
with ModeHandlers, part 1 | |||
2013-06-21 | Fix Doxygen comments. | Peter Powell | |
2013-06-16 | Always set the topic in Channel::SetTopic(), move access checks into cmd_topic | attilamolnar | |
2013-06-04 | Remove the now unused Channel::RemoveAllPrefixes() and CountInvisible() | attilamolnar | |
2013-06-04 | Reduce User* -> Membership* lookups on part and kick | attilamolnar | |
2013-06-02 | Move a few trivial functions into headers | attilamolnar | |
2013-05-16 | Get rid of strlcpy(), strlcat(), charlcat() and charremove() | attilamolnar | |
2013-05-15 | Replace some C-isms with C++-isms. | Peter Powell | |
* 'const char*' to 'const std::string&'. * snprintf to std::string concatenation. * Replace duplicated OneOfMatches with InspIRCd::MatchMask. | |||
2013-04-13 | Channel::JoinUser() and Channel::ForceChan() changes | attilamolnar | |
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 | |||
2013-04-12 | Tidy up source files: | Peter Powell | |
- Use #pragma once instead of include guards. - Move header files in src/modules to include/modules. - Fixed various spacing issues. | |||
2013-04-08 | Migrate u_listmode.h into the core, change +b to use it | attilamolnar | |
2013-04-01 | Change channel name parameter of Module::OnUserPreJoin() and ↵ | attilamolnar | |
Channel::JoinUser() to std::string from char* | |||
2012-07-05 | Fix Doxygen syntax errors. | Peter Powell | |
2012-06-17 | Fix pending invites not being removed when a channel was deleted or had its ↵ | attilamolnar | |
TS lowered | |||
2012-04-19 | Replace copyright headers with headers granting specific authors copyright | Robby- | |
2012-04-14 | Fixes for bug #12 | Justin Crawford | |
2010-01-11 | ...because every now and again, i have to do a massive commit. | brain | |
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12248 e03df62e-2008-0410-955e-edbf42e46eb7 | |||
2010-01-09 | Disallow adding prefix-mode when it is already set (fixes bug #935) | danieldg | |
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12245 e03df62e-2008-0410-955e-edbf42e46eb7 | |||
2009-11-15 | Add ModeHandler* versions of channel mode access | danieldg | |
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12133 e03df62e-2008-0410-955e-edbf42e46eb7 | |||
2009-11-15 | Hide channel mode structures | danieldg | |
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12132 e03df62e-2008-0410-955e-edbf42e46eb7 | |||
2009-10-24 | Move forward declarations to typedefs.h | danieldg | |
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11967 e03df62e-2008-0410-955e-edbf42e46eb7 | |||
2009-10-23 | Make User::uuid and User::server const | danieldg | |
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11962 e03df62e-2008-0410-955e-edbf42e46eb7 | |||
2009-10-18 | Cull channels, warn when Extensible objects are not culled as they must be | danieldg | |
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11901 e03df62e-2008-0410-955e-edbf42e46eb7 | |||
2009-10-17 | Make classbase and refcountbase uncopyable; expand comments on their ↵ | danieldg | |
indended uses git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11888 e03df62e-2008-0410-955e-edbf42e46eb7 | |||
2009-10-03 | Get rid of a bunch of memory-wasting C-style strings | danieldg | |
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11796 e03df62e-2008-0410-955e-edbf42e46eb7 | |||
2009-09-26 | Remove InspIRCd* parameters and fields | danieldg | |
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11763 e03df62e-2008-0410-955e-edbf42e46eb7 |