summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2015-11-03Remove UserManager::GarbageCollect()Attila Molnar
2015-11-03Move already sent id rollover handling and static LocalUser::already_sent_id ↵Attila Molnar
into UserManager
2015-11-03Add UserManager::NextAlreadySentId() and convert all code to use itAttila Molnar
2015-11-03Merge branch 'master+invite'Attila Molnar
2015-11-02core_channel Implement invite (un)serializationAttila Molnar
2015-11-02Rewrite invite systemAttila 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-11-02Move ServerConfig::InvBypassModes into core_channelAttila Molnar
2015-11-02Move handling of <options:invitebypassmodes> into core_channelAttila Molnar
2015-10-14Merge pull request #1093 from SaberUK/master+tscAttila Molnar
Update another password check to use InspIRCd::TimingSafeCompare.
2015-10-14Update another password check to use InspIRCd::TimingSafeCompare.Peter Powell
2015-10-11Merge pull request #1098 from SaberUK/master+appleclangAttila Molnar
Fix detection of the Apple variant of Clang.
2015-09-23Fix detection of the Apple variant of Clang.Peter Powell
This splitting of compiler names mirrors the change implemented by other build systems like cmake.
2015-07-07m_ssl_openssl Implement custom BIO methods that call SocketEngine methodsAttila Molnar
2015-07-07m_ssl_openssl Remove NULL check of the session in OpenSSLIOHook constructorAttila Molnar
2015-07-06m_ssl_openssl Use SSL_MODE_RELEASE_BUFFERS if availableAttila Molnar
2015-07-06m_ssl_openssl Enable ECDH when acting as a server on OpenSSL 1.0.0 and laterAttila Molnar
2015-07-06m_ssl_openssl Unconditionally compile code for detecting renegotiation and ↵Attila Molnar
disallow it by default
2015-07-06Fail invalid dns responses instead of dropAdam
2015-07-02Merge pull request #1069 from del6597/patch-1Attila Molnar
Update m_blockcaps.cpp
2015-07-01m_blockcaps Reword error message to indicate 'greater than or equal to' ↵David Lamont
logic when checking caps percentage
2015-06-26Merge pull request #1059 from OVERdrive-IRC/m_repeat/fix-typoAttila Molnar
m_repeat: fix typo (similiar->similar)
2015-06-22m_ssl_gnutls, m_ssl_openssl Log library version information on loadAttila Molnar
2015-06-12m_repeat: fix typo (similiar->similar)James Lu
Also update docs/ accordingly
2015-06-08Merge branch 'master+sendq'Attila Molnar
2015-06-06Clean up indent in StreamSocket::DoWrite()Attila Molnar
2015-06-06m_ssl_gnutls Implement corking on GnuTLS 3.1.9 and later to avoid data ↵Attila Molnar
copies done by sendq flattening
2015-06-06Call OnStreamSocketWrite() once per write eventAttila Molnar
Do sendq flattening in SSL modules, move code for it into class SSLIOHook from core
2015-06-06Add max outgoing record size option to sslprofile configAttila Molnar
2015-06-06Convert all code to use StreamSocket::SendQueueAttila Molnar
Let OnStreamSocketWrite see the entire sendq instead of one element at a time
2015-06-06Add class StreamSocket::SendQueueAttila Molnar
2015-06-04Expand module names in ServerConfig::ApplyModules()Attila Molnar
2015-06-04Merge pull request #1044 from SaberUK/master+multichar-prefixAttila Molnar
Add support for channel alias prefixes with multiple characters.
2015-06-03Add support for channel alias prefixes with multiple characters.Peter Powell
2015-06-03m_silence Change silencelist type to vectorAttila Molnar
2015-06-03m_silence Remove unused parameters from OnBuildExemptList and rename itAttila Molnar
2015-06-03m_callerid Prioritize after other mods for the OnUserPreMessage hookAttila Molnar
Issue #1051
2015-06-03Merge pull request #1054 from SaberUK/master+fix-linking-modulesAttila Molnar
Fix modules with 2+ files not having their LinkerFlags parsed.
2015-06-03Fix modules with 2+ files not having their LinkerFlags parsed.Peter Powell
2015-06-02Fix incomplete conversion to the new whois system noticed by @SaberUKAttila Molnar
2015-05-23m_spanningtree Log nick collisions more verbosely and in all casesAttila Molnar
2015-05-22Remove dead code from UserManager::AddUser()Attila Molnar
2015-05-22Fix some oversightsAttila Molnar
2015-05-20Update example configuration to say the new style module names everywhereAttila Molnar
2015-05-20Allow modules to be called as "foo" instead of "m_foo.so"Attila Molnar
2015-05-19m_spanningtree Fix harmless valgrind warning about uninit var usage on unloadAttila Molnar
2015-05-19Increase entries in valgrind stack traces to 30 (--num-callers)Attila Molnar
2015-05-19Merge branch 'master+movenames'Attila Molnar
2015-05-18New m_ldap from AnopeAdam
Redesign to be more like m_mysql, polling ldap_result from a thread as done previously is undefined.
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-17Move code that quits all users from InspIRCd::Cleanup() to cmd_dieAttila Molnar