summaryrefslogtreecommitdiff
path: root/src/coremods
AgeCommit message (Expand)Author
2014-07-10Remove current time parameter of the Timer constructorAttila Molnar
2014-07-09core_whowas Rename and move WhoWasGroup to WhoWas::EntryAttila Molnar
2014-07-09core_whowas Return a WhoWas::Manager::Stats struct from GetStats() instead of...Attila Molnar
2014-07-09core_whowas Split database logic into a WhoWas::Manager classAttila Molnar
2014-07-09core_whowas Clean up GetStats()Attila Molnar
2014-07-09core_whowas Rename misleading variables and typedefsAttila Molnar
2014-07-09core_whowas Switch from map to a hash map and from irc::string to std::stringAttila Molnar
2014-07-09core_whowas Change the FIFO to be an intrusive listAttila Molnar
2014-07-09core_whowas Store the nickname in WhoWas::NickAttila Molnar
2014-07-09core_whowas Store time added in WhoWas::NickAttila Molnar
2014-07-09core_whowas Delete elements of the per nick deque in the destructor of WhoWas...Attila Molnar
2014-07-09core_whowas Create class WhoWas::Nick, store pointers to those in the mapAttila Molnar
2014-07-09core_whowas Don't display used bytes in /STATS zAttila Molnar
2014-07-03Remove now needless User::ForceNickChange()Attila Molnar
2014-07-03Move calling the OnUserPreNick() hook and the restrictbannedusers check from ...Attila Molnar
2014-07-03core_user Deduplicate code that calls the OnUserRegister hookAttila Molnar
2014-07-03core_user Inherit CommandNick from SplitCommand, only handle it for local usersAttila Molnar
2014-06-25Add formatting to InspIRCd::TimeString; switch all code to use it.Peter Powell
2014-06-22Change all occurrences of plain sort() to std::sort()Attila Molnar
2014-06-22core_userhost Show real host if the target is the same as the user doing the ...Attila Molnar
2014-06-22core_userhost Append data to the output in a saner wayAttila Molnar
2014-06-22core_userhost Do the HasPrivPermission() check only once, not once per nickAttila Molnar
2014-06-22core_ison Use iteratorsAttila Molnar
2014-06-22core_ison Extract duplicated code into a functionAttila Molnar
2014-06-22core_ison Truncate string after sending it on overflow instead of recreating itAttila Molnar
2014-06-22core_ison Don't deduplicate nicksAttila Molnar
2014-06-22core_ison Remove check that is always trueAttila Molnar
2014-06-22core_list Improve readability by assigning the Channel being inspected to a v...Attila Molnar
2014-06-22core_list Check whether the chan name/topic has to be Match()ed once, not onc...Attila Molnar
2014-06-22core_list Do the HasPrivPermission() check only once, not once per chanAttila Molnar
2014-06-20Check Q-Lines on nick change in core_xlineAttila Molnar
2014-06-13Change allocation of InspIRCd::Parser to be physically part of the object con...Attila Molnar
2014-06-13Add CommandParser::GetCommands() and typedef CommandMap and use it instead of...Attila Molnar
2014-06-13Change allocation of InspIRCd::stats to be physically part of the object cont...Attila Molnar
2014-06-11Send the membership id when kicking a remote user and drop KICKs with mismatc...Attila Molnar
2014-06-10Add channel TS to server-to-server INVITE to detect and drop unauthorized inv...Attila Molnar
2014-06-10cmd_kick Assign a value to the kick reason string more reasonablyAttila Molnar
2014-06-10Use the iterator version of Channel::KickUser() in a few placesAttila Molnar
2014-06-10Change Channel::KickUser() to accept an iterator, add overload that accepts a...Attila Molnar
2014-06-10Move pre-kick checks from core to cmd_kick (core_channel)Attila Molnar
2014-05-12Update core_stats.cppWindowsUser
2014-04-14core_lusers Don't capitalize "local users" and "global users"Attila Molnar
2014-04-09Avoid double Membership lookup in Channel::UserList()Attila Molnar
2014-04-09Move checks determining whether a user is allowed to view the NAMES list of a...Attila Molnar
2014-04-07Merge insp20Attila Molnar
2014-04-02Move User::SendAll() into core_privmsgAttila Molnar
2014-04-02Remove User::WriteTo() functions; use User::WriteFrom() insteadAttila Molnar
2014-03-31Check if Membership::GetPrefixChar() returns 0 before appending it to a stringAttila Molnar
2014-03-25Add typedef OperList to UserManager for use with all_opersAttila Molnar
2014-03-24Add stdalgo::delete_all() that deletes all elements in a containerAttila Molnar