| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Improve the inlining of some channel functions. | 2023-07-07 | 1 | -17/+5 | |
| * | Update KickUser to match PartUser. | 2023-07-06 | 1 | -12/+17 | |
| * | Make PartUser inline and add an overload that takes an iterator.•••The return value of PartUser is not used 99% of the time so this allows the compiler to optimise it out. | 2023-07-06 | 1 | -6/+20 | |
| * | Make JoinUser return a Membership instead of a Channel. | 2023-06-22 | 1 | -2/+2 | |
| * | Merge branch 'insp3' into master. | 2023-01-01 | 1 | -1/+1 | |
| |\ | |||||
| | * | Update copyright headers. | 2022-12-30 | 1 | -1/+1 | |
| * | | More const correctness work. | 2022-12-08 | 1 | -12/+12 | |
| * | | More const correctness. | 2022-10-23 | 1 | -5/+6 | |
| * | | Fix various cases of the &* being next to the name instead of type. | 2022-09-29 | 1 | -1/+1 | |
| * | | Replace GetUserCounter() with GetUsers().size().•••This method is legacy from when there was a manual user counter and isn't much of a length saving over the unsugared version. | 2022-08-24 | 1 | -7/+0 | |
| * | | Switch from NULL to nullptr. | 2022-07-22 | 1 | -2/+2 | |
| * | | Modernize the syntax of various templates. | 2022-06-23 | 1 | -1/+1 | |
| * | | Add a typedef for a mode rank. | 2022-05-17 | 1 | -1/+1 | |
| * | | Add a typedef for the mode status bitset. | 2022-03-27 | 1 | -1/+1 | |
| * | | Abolish the infernal space before accessibility keywords. | 2022-01-25 | 1 | -3/+3 | |
| * | | Add the final keyword to all remaining classes that can have it. | 2021-12-20 | 1 | -1/+2 | |
| * | | Merge branch 'insp3' into master. | 2021-05-11 | 1 | -13/+13 | |
| |\| | |||||
| | * | Fix a bunch of weird indentation and spacing issues. | 2021-04-27 | 1 | -13/+13 | |
| * | | Make the reason parameter to PartUser const. | 2021-04-18 | 1 | -1/+1 | |
| * | | Merge branch 'insp3' into master. | 2021-03-31 | 1 | -1/+0 | |
| |\| | |||||
| | * | Fix various documentation comments. | 2021-03-31 | 1 | -1/+0 | |
| * | | Merge branch 'insp3' into master. | 2021-03-05 | 1 | -2/+2 | |
| |\| | |||||
| | * | Update copyright headers. | 2021-03-05 | 1 | -2/+2 | |
| * | | Add first class support for extbans.•••This replaces the previous support which was pretty much a giant hack and was not synchronised between servers. | 2020-05-07 | 1 | -4/+0 | |
| * | | Merge branch 'insp3' into master. | 2020-05-05 | 1 | -3/+3 | |
| |\| | |||||
| | * | Fixes by misspell-fixer | 2020-04-21 | 1 | -3/+3 | |
| * | | Use C++11 inline initialisation for class members. | 2020-02-06 | 1 | -1/+1 | |
| |/ | |||||
| * | Update copyright headers. | 2020-01-31 | 1 | -1/+1 | |
| * | Add Channel::WriteRemoteNotice and revert WriteNotice changes.•••This is a partial reversion of 687778b72e. See also: #1749. | 2020-01-29 | 1 | -0/+1 | |
| * | Update copyright headers. | 2020-01-11 | 1 | -3/+6 | |
| * | Allow Channel::WriteNotice send to other servers and status ranks. | 2019-11-17 | 1 | -1/+2 | |
| * | Add ParamMode::IsParameterSecret and remove special casing of keys. | 2019-01-28 | 1 | -3/+3 | |
| * | Fix warnings from Doxygen. | 2018-10-21 | 1 | -2/+0 | |
| * | Implement IRCv3 message tag support.•••Co-authored-by: Attila Molnar <attilamolnar@hush.com> | 2018-08-13 | 1 | -62/+9 | |
| * | Fix a ton of -Wsign-conversion warnings. | 2017-11-17 | 1 | -1/+1 | |
| * | Refactor topic setting logic to go through Channel::SetTopic() in all cases•••- 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-04-11 | 1 | -1/+4 | |
| * | Add Channel::WriteNotice() | 2016-03-05 | 1 | -0/+5 | |
| * | Return true from Channel::PartUser() if the user was on the channel | 2015-12-28 | 1 | -1/+2 | |
| * | Rewrite invite system•••- 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-11-02 | 1 | -1/+1 | |
| * | Move Channel::UserList() from core to cmd_names | 2015-05-16 | 1 | -6/+0 | |
| * | Store Membership objects physically in the nodes of Channel::MemberMap | 2014-09-27 | 1 | -1/+1 | |
| * | Remove typedef UserMembIter, use Channel::MemberMap::iterator instead•••Remove the now unused UserMembList typedef too | 2014-07-14 | 1 | -4/+4 | |
| * | Rename UserMembList to Channel::MemberMap, switch all code to use it | 2014-07-14 | 1 | -2/+8 | |
| * | Change return type of Channel::GetUsers() to reference from pointer as it is ... | 2014-07-14 | 1 | -1/+1 | |
| * | Return the newly created Membership object from Channel::ForceJoin() | 2014-06-10 | 1 | -1/+2 | |
| * | Change Channel::KickUser() to accept an iterator, add overload that accepts a...•••Remove srcmemb parameter | 2014-06-10 | 1 | -3/+14 | |
| * | Avoid double Membership lookup in Channel::UserList()•••The user is always inside if UserList() is called from ForceJoin() and the HasUser() result obtained in the /NAMES handler can be reused | 2014-04-09 | 1 | -1/+2 | |
| * | Index Channel::modes and User::modes with the id of the mode instead of its l... | 2014-02-21 | 1 | -6/+4 | |
| * | Add ParamModeBase and ParamMode, change all parameter modes to inherit from P...•••- 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-15 | 1 | -12/+19 | |
| * | Move GetAllPrefixChars() from Channel to Membership | 2014-02-14 | 1 | -8/+0 | |
