Age | Commit message (Collapse) | Author | |
---|---|---|---|
2016-02-25 | Add User::WriteRemoteNumeric() and switch code using SendText() to send ↵ | Attila Molnar | |
numerics to it | |||
2016-02-25 | Convert WriteNumeric() calls to pass the parameters of the numeric as method ↵ | Attila Molnar | |
parameters | |||
2016-02-25 | Add Numeric::Numeric | Attila Molnar | |
2015-12-07 | Do not insert FakeUsers into UserManager::uuidlist | Attila Molnar | |
Inserting them causes FindUUID() and FindNick() to return server users which is not what modules want | |||
2015-11-03 | Move already sent id rollover handling and static LocalUser::already_sent_id ↵ | Attila Molnar | |
into UserManager | |||
2015-11-03 | Add UserManager::NextAlreadySentId() and convert all code to use it | 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-02-27 | Fix oversights in substr() conversion | Attila Molnar | |
Thanks to @StevenVanAcker for reporting and testing this | |||
2015-01-24 | Remove needless checks from User::WriteCommon()/WriteCommonRaw() | Attila Molnar | |
2015-01-24 | Implement User::WriteCommonRaw() using ForEachNeighbor() | Attila Molnar | |
2015-01-24 | Implement User::WriteCommonQuit() using ForEachNeighbor() in UserManager | Attila Molnar | |
2015-01-24 | Add User::ForEachNeighbor() | Attila Molnar | |
2015-01-10 | Reduce std::string::substr() usage | Attila Molnar | |
substr() returns a new string while erase() and assign() modify the existing one | |||
2014-09-05 | Unset oper-only modes in User::UnOper() in a more sensible way | Attila Molnar | |
Get the user mode list from the ModeParser instead of trying all possible mode letters | |||
2014-09-03 | Replace irc::modestacker usage with the new ModeParser::Process() | Attila Molnar | |
2014-07-28 | Do not attempt to detect non-culled users at destruction by looking for ↵ | Attila Molnar | |
their uuid, leave it to Extensible This does not take uuid/sid reuse into consideration and Extensible implements this detection already in a proper way | |||
2014-07-28 | Allow fast sid reuse by erasing fake users from UserManager::uuidlist when ↵ | Attila Molnar | |
the netsplit is handled, not in cull() | |||
2014-07-25 | Merge insp20 | Attila Molnar | |
2014-07-19 | Erase local users from UserManager::local_list in QuitUser() | Attila Molnar | |
2014-07-16 | Move typedef ClassVector to ServerConfig::ClassVector | Attila Molnar | |
2014-07-14 | Rename UserChanList to User::ChanList, remove UCListIter | Attila Molnar | |
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-07-03 | Get rid of irc::strings (assign()) in User::ChangeNick() | Attila Molnar | |
2014-07-03 | Deduplicate code in User::ChangeNick() | Attila Molnar | |
2014-07-03 | Remove now needless User::ForceNickChange() | Attila Molnar | |
Change call sites to call ChangeNick() | |||
2014-07-03 | Move calling the OnUserPreNick() hook and the restrictbannedusers check from ↵ | Attila Molnar | |
core to cmd_nick (core_user) | |||
2014-06-20 | Check Q-Lines on nick change in core_xline | Attila Molnar | |
2014-06-20 | Reject nickname case changes too when enforcing <security:restrictbannedusers> | Attila Molnar | |
2014-06-20 | Change the type of the user parameter in the OnUserPreNick() hook from User ↵ | Attila Molnar | |
to LocalUser No remote users were passed to this hook before. Remove needless IS_LOCAL() checks. | |||
2014-06-20 | Increment serverstats::Collisions when a collision is handled, not when a ↵ | Attila Molnar | |
module denies a nick change | |||
2014-06-14 | Kill needless #includes in source files | Attila Molnar | |
2014-06-13 | Change allocation of InspIRCd::Parser to be physically part of the object ↵ | Attila Molnar | |
containing it | |||
2014-06-13 | Change allocation of InspIRCd::BanCache to be physically part of the object ↵ | Attila Molnar | |
containing it | |||
2014-06-13 | Pull in bancache.h from inspircd.h | Attila Molnar | |
2014-06-13 | Change allocation of InspIRCd::stats to be physically part of the object ↵ | Attila Molnar | |
containing it While at it, remove "stats" from all field names | |||
2014-06-07 | Fix harmless loop off-by-ones found by Moonlightning | satmd | |
2014-05-23 | Prefix all definitions in config.h to avoid potential collisions. | Peter Powell | |
2014-04-11 | Kill <channels> in favour of <connect:maxchans> and <oper:maxchans>. | Peter Powell | |
Remove channels/high-join-limit privilege | |||
2014-04-02 | Remove unused User::WriteCommonExcept() | Attila Molnar | |
WriteCommonRaw(msg, false) has similiar functionality with a std::string parameter | |||
2014-04-02 | Move User::SendAll() into core_privmsg | Attila Molnar | |
This functionality is only used by the PRIVMSG and NOTICE handlers | |||
2014-04-02 | Remove User::WriteTo() functions; use User::WriteFrom() instead | Attila Molnar | |
The removed functions were rarely used and all they did was to call User::WriteFrom() with swapped arguments. On call sites, WriteTo() hardly offers any readability improvement over WriteFrom(). | |||
2014-03-25 | Change storage of UserManager::all_opers to be a vector | Attila Molnar | |
2014-03-17 | Rewrite clone counting to use one map instead of two | Attila Molnar | |
2014-03-15 | Change allocation of UserManager::clientlist to be physically part of the ↵ | Attila Molnar | |
object containing it | |||
2014-03-14 | Change allocation of UserManager::uuidlist to be physically part of the ↵ | Attila Molnar | |
object containing it | |||
2014-03-08 | Make the maximum hostname length configurable in the config. | Peter Powell | |
2014-03-03 | Update nick timestamps in User::ChangeNick(), pass the new TS in a parameter | Attila Molnar | |
2014-02-27 | Remove REG_ALL checks from User::SharesChannelWith() | Attila Molnar | |
These checks are never true currently and even if one or both users are unregistered proceeding is harmless | |||
2014-02-21 | Index Channel::modes and User::modes with the id of the mode instead of its ↵ | Attila Molnar | |
letter |