summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-03-15Change allocation of UserManager::clientlist to be physically part of the ↵Attila Molnar
object containing it
2014-03-15Add UserManager::GetUsers()Attila Molnar
2014-03-14Change allocation of UserManager::uuidlist to be physically part of the ↵Attila Molnar
object containing it
2014-03-14Change allocation of InspIRCd::chanlist to be physically part of the object ↵Attila Molnar
containing it
2014-03-14Add InspIRCd::GetChans(), remove ChannelCount()Attila Molnar
2014-03-14m_permchannels Remove pointless cleanup ceremony in cull()Attila Molnar
2014-03-12Deduplicate and move the *MatchesEveryone() functions to core_xlineAttila Molnar
2014-03-09cmd_quit Display quit messages of remote usersAttila Molnar
2014-03-09Move the wallops mode from the core into core_wallopsAttila Molnar
2014-03-08Make the maximum hostname length configurable in the config.Peter Powell
2014-03-07Fix m_permchannels not prepending the path when reading the config.Peter Powell
2014-03-07Move admin settings into core_infoAttila Molnar
2014-03-07Move {prefix|suffix|fixed}{quit|part} into core_userAttila Molnar
2014-03-07Read the die and restart password and their hash type on demandAttila Molnar
2014-03-06Update detection in module loading commands that relied on old command ↵Attila Molnar
module names
2014-03-06Move UNLOADMODULE handler into core_loadmoduleAttila Molnar
2014-03-06Create the core_stub moduleAttila Molnar
This handles CONNECT, LINKS, SERVER and SQUIT
2014-03-05Load core_*.so instead of cmd_*.soAttila Molnar
2014-03-05Integrate coremods into the build systemAttila Molnar
2014-03-05Create the core_xline moduleAttila Molnar
2014-03-05Create the core_user moduleAttila Molnar
2014-03-05Create the core_oper moduleAttila Molnar
2014-03-05Create the core_info moduleAttila Molnar
2014-03-05Create the core_channel moduleAttila Molnar
2014-03-05Move src/commands/cmd_*.cpp to src/coremods[/core_*]/Attila Molnar
2014-03-04Remove out of date doc and fix typo in commands/cmd_*.cppAttila Molnar
2014-03-03m_spanningtree Remove remains of the KeepNickTS workaroundAttila Molnar
2014-03-03Update nick timestamps in User::ChangeNick(), pass the new TS in a parameterAttila Molnar
2014-02-27Remove 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-27cmd_topic Remove redundant NULL checkAttila Molnar
2014-02-27Give m_connectban a configurable ban messageGoogolplexed
2014-02-26Simplify /SAJOIN syntax and add permission for joining other users.Daniel Vassdal
2014-02-26m_chanfilter Remove needless mode parameter is empty checkAttila Molnar
2014-02-26m_cycle Remove redundant IS_LOCAL() checkAttila Molnar
2014-02-25cmd_kill Remove now needless check that prevented KILLing the same user twiceAttila Molnar
2014-02-25cmd_kill Hide server notices if the source is ulinedAttila Molnar
Issue #742
2014-02-25m_svshold Hide server notices by defaultAttila Molnar
Issue #742
2014-02-23Throw an exception if ModeParser::AddMode() failsAttila Molnar
2014-02-23Moving CGIIRC to a new snomask (w)Googolplexed
2014-02-22Add ModeParser::GetModes(), returns all user/chanmodesAttila Molnar
2014-02-21Index Channel::modes and User::modes with the id of the mode instead of its ↵Attila Molnar
letter
2014-02-21Assign an id to user modes, parameter chanmodes and simple chanmodesAttila Molnar
2014-02-21Replace mode letter parameter of OnRawMode() with a ModeHandler*, remove pcntAttila Molnar
2014-02-20Add a ModeParser::FindMode() overload that takes a mode name and a mode typeAttila Molnar
2014-02-20Create a name -> ModeHandler* mapAttila Molnar
2014-02-18Replace ModeMasks with a two-dimensional arrayAttila Molnar
2014-02-18Change the parameter type of ModeHandler::GiveModeList() from ModeMasks to ↵Attila Molnar
ModeType
2014-02-15Add 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-15Add ModeHandler::IsParameterMode() and MC_PARAMAttila Molnar
2014-02-14Move GetAllPrefixChars() from Channel to MembershipAttila Molnar