summaryrefslogtreecommitdiff
path: root/src/modules
AgeCommit message (Collapse)Author
2015-12-05m_sasl Create SASLCap which subclasses Cap::Capability and implements ↵Attila Molnar
OnRequest()
2015-12-05m_cap Add Capability::OnRequest() hookAttila Molnar
2015-12-05Add rewritten m_cap moduleAttila Molnar
- Caps are now managed by m_cap - Each cap uses one bit in an extension item shared with other caps
2015-12-05m_ircv3 Change signature of WriteNeighboursWithExt to accept a cap, renameAttila Molnar
2015-12-05Nuke m_capAttila Molnar
2015-11-26m_services_account Handle FORMAT_INTERNAL when unserializing the accountnameAttila Molnar
Skip sending the numeric and firing the OnAccountChange event
2015-11-26Handle module reloading in core_reloadmodule entirelyAttila Molnar
2015-11-11m_ssl_gnutls Disable SSL v3 and when acting as a server enforce our cipher ↵Attila Molnar
preferences by default
2015-11-11m_ssl_gnutls Strip unrecognized tokens from the priority string if ↵Attila Molnar
configured to do so or when using the default
2015-11-11m_ssl_gnutls Add GnuTLS::Priority::GetDefault()Attila Molnar
2015-11-10m_ssl_gnutls Remove DH parameter generationAttila Molnar
Generating DH params like this blocked the main thread, significantly slowing down startup and it made /rehash ssl freeze the server until the generation finished. External tools such as our genssl should be used to generate DH params.
2015-11-10m_ssl_openssl Disable compression and SSL v3 by defaultAttila Molnar
2015-11-10m_ssl_openssl Add workaround for a memory leak in OpenSSLAttila Molnar
2015-11-03Add UserManager::NextAlreadySentId() and convert all code to use itAttila 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-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-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-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-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-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-19m_spanningtree Fix harmless valgrind warning about uninit var usage on unloadAttila 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-17Fix incorrect iterator use leading to prematurely exiting loops when ↵Attila Molnar
quitting users while looping the local user list
2015-05-13m_spanningtree Use uint64_t for the burst start time to avoid overflowsAttila Molnar
2015-05-13m_spanningtree Clean up commentsAttila Molnar
2015-05-10Merge insp20Attila Molnar
2015-05-10Merge pull request #1039 from SaberUK/insp20+fix-restrictmsg-ulineAttila Molnar
[2.0] Fix not being able to message ulines when m_restrictmsg is loaded.
2015-05-10Fix not being able to message ulines when m_restrictmsg is loaded.Peter Powell
2015-05-10m_ssl_gnutls Hold users in pre-registration state until the handshake is ↵Attila Molnar
completed
2015-05-04Merge branch 'master+whoiscontext'Attila Molnar
2015-05-01m_httpd Fix iteration in OnUnloadModule()Attila Molnar
2015-04-28Move OnWhois* events to core_whois, add Whois::ContextAttila Molnar
Remove InspIRCd::SendWhoisLine()
2015-04-28Prepend target user nick to whois numerics in InspIRCd::SendWhoisLine()Attila Molnar
2015-04-28m_servprotect Remove pointless compare of src and dst from OnWhoisLine handlerAttila Molnar
2015-04-20Merge insp20Attila Molnar
2015-04-16m_sasl Update description, SASL is no longer exclusive to AthemeAttila Molnar