summaryrefslogtreecommitdiff
path: root/include
AgeCommit message (Collapse)Author
2015-05-17Move InspIRCd::SendError() to cmd_dieAttila Molnar
Fix multiple ERROR messages being sent to unregistered users by removing the "Exiting with status..." message
2015-05-13core_dns Add DNS timeout timer in Process() not in DNS::Request constructorAttila Molnar
2015-05-13core_dns Make MAX_REQUEST_ID unsigned, move it to core_dns from headerAttila Molnar
2015-05-12Remove support for non-unloadable (VF_STATIC) modulesAttila Molnar
No module we ship uses this flag and new modules should not use it either to make hotfixing possible
2015-04-28Move OnWhois* events to core_whois, add Whois::ContextAttila Molnar
Remove InspIRCd::SendWhoisLine()
2015-04-27Merge branch 'master+dns'Attila Molnar
2015-04-27core_dns Drop incoming packets containing a different question from what we ↵Attila Molnar
asked
2015-04-21core_dns Remove incomplete support for multiple questions per queryAttila Molnar
2015-04-21core_dns Don't store query class code in QuestionAttila Molnar
2015-04-21core_dns Add typedef for request id, change it to uint16_tAttila Molnar
2015-04-20Merge insp20Attila Molnar
2015-04-12Change StreamSocket::DoRead() and DoWrite() to be non-virtual, make DoRead() ↵Attila Molnar
private
2015-04-12Dispatch EventHandler events to dedicated virtual functionsAttila Molnar
Remove enum EventType
2015-03-23Merge pull request #1005 from SaberUK/master+minor-tweaksAttila Molnar
Various changes mainly relating to the build system.
2015-03-23Merge pull request #1004 from SaberUK/insp20+fix-various-warningsAttila Molnar
[2.0] Fix various warnings with the new Doxygen and LLVM releases.
2015-03-21Rebuild clone counts on rehashAdam
2015-03-06Fix building modules that use cap.h with a C++11 compiler.Peter Powell
2015-03-04Add SocketEngine::WriteV()Attila Molnar
2015-02-27Fix various Doxygen warnings.Peter Powell
2015-02-15Eliminate constant return value of the all events version of ↵Attila Molnar
ModuleManager::SetPriority()
2015-02-15Convert mods calling the old compat wrapper of ModuleManager::SetPriority() ↵Attila Molnar
to use the current method, remove wrapper
2015-02-15Remove I_BEGIN from enum ImplementationAttila Molnar
2015-02-12m_spanningtree Pass Server* to the OnServerLink/OnServerSplit eventsAttila Molnar
2015-02-11Remove class Event and the OnEvent hookAttila Molnar
2015-02-11Convert the spanningtree events to use the new cross-module event systemAttila Molnar
2015-02-11Remove unused parameters from HTTPRequest constructorAttila Molnar
2015-02-11Convert the HTTPd request event to use the new cross-module event systemAttila Molnar
2015-02-11Convert the HTTPd ACL event to use the new cross-module event systemAttila Molnar
2015-02-11Convert the SASL fallback event to use the new cross-module event systemAttila Molnar
2015-02-11Convert the CAP event to use the new cross-module event systemAttila Molnar
2015-02-11Allow enabling/disabling caps via GenericCap::SetActive()Attila Molnar
2015-02-11Convert the account login event to use the new cross-module event systemAttila Molnar
2015-02-11Add new cross-module event systemAttila Molnar
2015-02-11Add missing const operators to dynamic_reference[_nocheck]Attila Molnar
2015-02-11Allow dynrefs to have an OnCapture() hookAttila Molnar
2015-02-05Merge pull request #971 from SaberUK/master+numeric-xlineAttila Molnar
Use ERR_YOUREBANNEDCREEP instead of NOTICE when a user is banned.
2015-01-26Merge branch 'master+foreachneighbor'Attila Molnar
2015-01-24Implement User::WriteCommonQuit() using ForEachNeighbor() in UserManagerAttila Molnar
2015-01-24Add User::ForEachNeighbor()Attila Molnar
2015-01-24Move implementation of Command and CommandBase functions into a source fileAttila Molnar
2015-01-24Remove unused CommandBase::DecodeParameter()Attila Molnar
2015-01-24Switch to unsigned ints in CommandBase constructor for min and max paramsAttila Molnar
2015-01-24Use ERR_YOUREBANNEDCREEP instead of NOTICE when a user is banned.Peter Powell
This is specified in RFC 1459 so we should probably use it.
2015-01-18Specify which Extensible subclass an ExtensionItem is valid forAttila Molnar
2015-01-17Fix modules not being versioned on Windows.Peter Powell
2015-01-14cmode_k Fix oversight in substr() conversionAttila Molnar
While at it, introduce a named constant for maximum key length
2015-01-10Remove the unused OnGlobalOper hookAttila Molnar
2014-12-19Merge branch 'master+listmode'Attila Molnar
2014-12-19Merge branch 'master+flatmap'Attila Molnar
2014-12-16Change listmode storage type to vectorAttila Molnar