]> git.netwichtig.de Git - user/henk/code/inspircd.git/history - src/modules.cpp
Merge pull request #1018 from SaberUK/insp20+hidekills
[user/henk/code/inspircd.git] / src / modules.cpp
2014-01-05 Attila MolnarFix possible use of invalid iterator on module unload
2013-05-16 AdamFix m_randquote with 0 quotes
2013-04-05 attilamolnarDon't attempt to unload or reload modules that are...
2012-12-02 attilamolnarThrow an exception when attempting to register an exten...
2012-10-12 AdamMerge pull request #320 from ChrisTX/insp20+cleanupwin
2012-10-12 ChrisTXWindows: In-depth cleanup (see details)
2012-09-23 Attila MolnarMerge pull request #308 from SaberUK/insp20-fingerprint
2012-09-13 attilamolnarNew OnUserSetIP() hook
2012-07-13 Attila MolnarMerge pull request #230 from Robby-/insp20-openssl
2012-07-01 Robin BurchellRevert "users: introduce OnSetClientIP hook."
2012-06-15 Robin BurchellMerge pull request #193 from attilamolnar/insp20+newlinefix
2012-06-13 William Pitcockusers: introduce OnSetClientIP hook.
2012-06-13 attilamolnarFix 2 clang warnings reported by @SaberUK
2012-05-14 Robin BurchellMerge pull request #109 from Justasic/insp20
2012-05-03 Robin BurchellMerge pull request #96 from Justasic/insp20
2012-04-23 Robin BurchellMerge pull request #92 from Robby-/insp20-headers
2012-04-19 Robby-Replace copyright headers with headers granting specifi...
2011-07-23 Daniel De GraafFix compile warning
2011-07-19 Daniel De GraafRemove harmless but scary-looking logfile lines
2010-04-02 Daniel De GraafSplit up API_VERSION number
2010-03-22 danieldgRemove channel argument from OnSendWhoLine, this inform...
2010-03-22 danieldgMove ModuleManager::UnloadAll out of modmanager_dynamic
2010-03-22 danieldgAllow static initialization of dynamic_reference objects
2010-03-13 danieldgConvert pgsql to SQLv3
2010-03-06 danieldgFix ModuleManager::SetPriority algorithm which did...
2010-02-20 danieldgRestore <options:exemptchanops> with long names
2010-02-19 danieldgKill m_spy, which was replaced by channels/auspex in...
2010-02-14 danieldgm_dnsbl updates
2010-02-11 danieldgChange SERVICE_{CMODE,UMODE} to SERVICE_MODE, which...
2010-02-02 danieldgAllow opermotd to specify its file in <files> without...
2010-02-02 danieldgExecutable include for MOTD and more
2010-02-02 danieldgAdd OnSetConnectClass hook for use in adding requiremen...
2010-02-01 danieldgAdd parameters to OnSendWhoLine hook, fixes "/who ...
2010-01-28 danieldgFix empty FMODE being sent if SendMode mode changes
2010-01-21 danieldgPut ConfigReader deprecation warning in logs
2010-01-19 danieldgFix some command registration warnings
2010-01-19 danieldgERROR is not a valid log level, so all these messages...
2010-01-18 danieldgPreCommand/PostCommand are local-only hooks
2010-01-17 danieldgAdd Module::init() for correct exception handling durin...
2010-01-17 danieldgPURE_STATIC improvements: Allow modules to be reloaded...
2010-01-14 danieldgVerify cloak keys match during CAPAB negotiation
2010-01-14 danieldgMove revision information from Version object to a...
2010-01-11 brain...because every now and again, i have to do a massive...
2009-11-16 danieldgUse ServiceProvider for inter-module dependencies
2009-11-15 danieldgAdd Inspircd::AddServices
2009-11-11 danieldgAllow static build of inspircd without module support
2009-10-25 danieldgForce heap allocation of refcountbase, create usecountb...
2009-10-21 danieldgKill ListenSocketBase, use OnAcceptConnection for all...
2009-10-21 danieldgUse ConfigTagList as a faster access method for access...
2009-10-21 danieldgChange module API to use LocalUser* where correct
2009-10-20 danieldgFix channel deletion on user quit and automatic removal...
2009-10-20 danieldgMove DumpText into User; kill unused WriteWallOps and...
2009-10-20 danieldgUse custom allocater to decide if refcountbase was...
2009-10-19 danieldgMaintain refcount of Module objects to complain about...
2009-10-19 danieldgFix implementation of reference to const, use reference...
2009-10-19 danieldgClean up some log messages
2009-10-19 danieldgPrevent path names from being specified in modules...
2009-10-17 danieldgMake classbase and refcountbase uncopyable; expand...
2009-10-17 danieldgRemove dummy API_VERSION from Version constructor
2009-10-17 danieldgRewrite ConfigReader again
2009-10-14 danieldgFix module unmapping with culled Module objects
2009-10-14 danieldgMove static map of extensions into ServerInstance,...
2009-10-13 danieldgRemove Command and ModeHandler objects in their destruc...
2009-10-12 danieldgDLLFactory--
2009-10-12 danieldgMake OnChannelRestrictionApply take a User* instead...
2009-10-12 danieldgm_exemptchanops by jackmcbarn - channel mode +X to...
2009-10-08 danieldgUpdate Event and Request APIs
2009-10-06 danieldgCorrectly ignore dummy argument to Version
2009-10-06 danieldgTake advantage of link errors to check API_VERSION...
2009-10-05 danieldgAdd OnBuildNeighborList hook, replaces all uses of...
2009-10-05 danieldgRun DelMode and DelModeWatcher in RemoveModule
2009-10-02 danieldgFix valgrind issues and crashes on exit
2009-09-30 danieldgFix compilation of SQL modules, use GlobalCulls to...
2009-09-26 danieldgFlexible SendQ
2009-09-26 danieldgRemove InspIRCd* parameters and fields
2009-09-22 danieldgDescribe module purpose in /MODULES output
2009-09-21 danieldgCreate StreamSocket for IO hooking implementation
2009-09-15 danieldgRemove Extensible items from user, channel, and Members...
2009-09-13 danieldgChange match direction of extbans to allow stacking
2009-09-13 danieldgClean up Command constructor
2009-09-13 danieldgAdd SerializeFormat for easier metadata formatting
2009-09-13 danieldgRemove redundant ServerInstance* fields
2009-09-13 danieldgReplace OnAccessCheck with OnPreMode to remove a number...
2009-09-13 danieldgModule API changes to use Membership* where sensible
2009-09-13 danieldgMembership* changes
2009-09-13 danieldgChange Extensible to use strongly typed entries
2009-09-05 w00tLikewise, convert OnLocalTopicChange to OnPreTopicChang...
2009-09-05 w00tChange OnPostLocalTopicChange to be OnPostTopicChange...
2009-09-03 danieldgChange cmd_*.so to use the Module object API
2009-09-02 danieldgInclude VERSION/REVISION information in module version...
2009-09-02 danieldgRemote user messaging fixes
2009-09-02 danieldgAdd OnChangeIdent and FIDENT support
2009-09-02 danieldgMake CHECK work remotely with optional second parameter
2009-09-02 danieldgAdd OnSendWhoLine hook, and use it in the oper hiding...
2009-09-02 danieldgModResult conversion: Change return type of all module...
2009-09-02 danieldgRemove "servermode" parameter, replace with IS_FAKE...
2009-09-02 danieldgAdd Module* creator to Command and ModeHandler
2009-09-02 danieldgRecord module source file in the Module object
2009-09-02 danieldgChange OnHookUserIO to OnHookIO, making it usable for...
2009-09-02 danieldgMetaData rework
next