aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/extra
Commit message (Expand)AuthorAgeFilesLines
...
* | m_ssl_* Add option to sslprofile controlling whether to request client certif...Gravatar Attila Molnar2016-08-083-9/+39
* | Add StreamSocket::GetModHook() for obtaining the IOHook belonging to a given ...•••Use it to simplify logic in all modules using or providing IOHooks Gravatar Attila Molnar2016-08-083-28/+19
* | Pass sendq to OnStreamSocketWriteGravatar Attila Molnar2016-08-083-6/+3
* | Add mbedTLS SSL moduleGravatar Attila Molnar2016-06-151-0/+924
* | Deduplicate code for on connect SSL ciphersuite NOTICE by moving it into m_ss...Gravatar Attila Molnar2016-04-282-43/+0
* | Export the GetCiphersuite() method from the SSL modulesGravatar Attila Molnar2016-04-282-2/+6
* | Introduce Stats::Context, pass it to the OnStats hook and switch all code to itGravatar Attila Molnar2016-02-251-5/+4
* | Merge insp20Gravatar Attila Molnar2016-02-221-1/+1
|\|
| * Update m_ssl_gnutls to use libgnutls-30 for gnutls 3.4Gravatar Adam2016-02-111-1/+1
* | Fix GCC 6 warning about auto_ptr via a different method.•••The previous method was causing build errors on CentOS and Solaris. Gravatar Peter Powell2016-02-201-4/+8
* | Fix warnings when building under GCC 6.Gravatar Peter Powell2016-02-191-3/+3
* | m_ssl_gnutls Disable SSL v3 and when acting as a server enforce our cipher pr...Gravatar Attila Molnar2015-11-111-1/+1
* | m_ssl_gnutls Strip unrecognized tokens from the priority string if configured...Gravatar Attila Molnar2015-11-111-2/+61
* | m_ssl_gnutls Add GnuTLS::Priority::GetDefault()Gravatar Attila Molnar2015-11-111-2/+12
* | m_ssl_gnutls Remove DH parameter generation•••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. Gravatar Attila Molnar2015-11-101-17/+1
* | m_ssl_openssl Disable compression and SSL v3 by defaultGravatar Attila Molnar2015-11-101-2/+2
* | m_ssl_openssl Add workaround for a memory leak in OpenSSLGravatar Attila Molnar2015-11-101-1/+9
* | m_ssl_openssl Implement custom BIO methods that call SocketEngine methodsGravatar Attila Molnar2015-07-071-3/+86
* | m_ssl_openssl Remove NULL check of the session in OpenSSLIOHook constructorGravatar Attila Molnar2015-07-071-2/+0
* | m_ssl_openssl Use SSL_MODE_RELEASE_BUFFERS if availableGravatar Attila Molnar2015-07-061-1/+6
* | m_ssl_openssl Enable ECDH when acting as a server on OpenSSL 1.0.0 and laterGravatar Attila Molnar2015-07-061-0/+5
* | m_ssl_openssl Unconditionally compile code for detecting renegotiation and di...Gravatar Attila Molnar2015-07-061-9/+1
* | m_ssl_gnutls, m_ssl_openssl Log library version information on loadGravatar Attila Molnar2015-06-222-0/+4
* | m_ssl_gnutls Implement corking on GnuTLS 3.1.9 and later to avoid data copies...Gravatar Attila Molnar2015-06-061-18/+89
* | Call OnStreamSocketWrite() once per write event•••Do sendq flattening in SSL modules, move code for it into class SSLIOHook from core Gravatar Attila Molnar2015-06-062-5/+15
* | Add max outgoing record size option to sslprofile configGravatar Attila Molnar2015-06-062-2/+16
* | Convert all code to use StreamSocket::SendQueue•••Let OnStreamSocketWrite see the entire sendq instead of one element at a time Gravatar Attila Molnar2015-06-062-6/+10
* | New m_ldap from Anope•••Redesign to be more like m_mysql, polling ldap_result from a thread as done previously is undefined. Gravatar Adam2015-05-181-302/+343
* | Merge insp20Gravatar Attila Molnar2015-05-102-0/+27
|\|
| * m_ssl_gnutls Hold users in pre-registration state until the handshake is comp...Gravatar Attila Molnar2015-05-101-1/+8
* | Dispatch EventHandler events to dedicated virtual functions•••Remove enum EventType Gravatar Attila Molnar2015-04-121-10/+11
* | m_ssl_gnutls Set a vector push function on GnuTLS 2.12 and later•••Setting a vector push function is recommended to reduce overhead during handshake Gravatar Attila Molnar2015-03-061-0/+42
* | m_ssl_openssl Remove OpenSSLIOHook::outbound and is_outbound constructor para...Gravatar Attila Molnar2015-03-051-5/+3
* | m_ssl_openssl Specify TLS client/server role on session creation, switch to S...Gravatar Attila Molnar2015-03-051-11/+14
* | m_ssl_gnutls Pass client/server role to GnuTLSIOHook constructor as a GNUTLS_...Gravatar Attila Molnar2015-03-051-4/+4
* | m_ssl_gnutls Add typedef for second parameter of gnutls_init() which changed ...Gravatar Attila Molnar2015-03-051-0/+8
* | m_ssl_gnutls Move GnuTLSIOHook::InitSession() code to constructor and GnuTLS:...Gravatar Attila Molnar2015-03-051-14/+9
* | m_ssl_gnutls, m_ssl_openssl Deduplicate Handshake() calling codeGravatar Attila Molnar2015-03-052-53/+47
* | m_ssl_gnutls, m_ssl_openssl Simplify status handling in IOHook read/write han...•••Remove states ISSL_CLOSING and ISSL_CLOSED from m_ssl_gnutls Gravatar Attila Molnar2015-03-052-19/+5
* | m_ssl_gnutls, m_ssl_openssl Simplify Handshake() result handlingGravatar Attila Molnar2015-03-052-36/+25
* | m_ssl_gnutls Replace ISSL_HANDSHAKING_READ/WRITE with a single stateGravatar Attila Molnar2015-03-051-5/+4
* | m_ssl_gnutls Implement faster reads on GnuTLS 3.3.5 and later by avoiding cop...Gravatar Attila Molnar2015-02-281-0/+27
* | m_ssl_gnutls Move logic that reads data from a session into new class GnuTLS:...Gravatar Attila Molnar2015-02-281-4/+25
* | m_ssl_gnutls Add convenience macro for library version checking, change check...Gravatar Attila Molnar2015-02-281-11/+12
* | Merge branch 'master+tlsversion'Gravatar Attila Molnar2015-02-062-6/+19
|\ \
| * | m_ssl_gnutls, m_ssl_openssl Prepend TLS protocol version to ciphersuite stringGravatar Attila Molnar2015-01-272-0/+2
| * | m_ssl_gnutls, m_ssl_openssl Extract code that builds a ciphersuite string int...Gravatar Attila Molnar2015-01-272-6/+17
* | | m_mysql Add charset config optionGravatar Florian Praden2015-02-061-0/+6
|/ /
* | Specify which Extensible subclass an ExtensionItem is valid forGravatar Attila Molnar2015-01-181-1/+3
* | Reduce std::string::substr() usage•••substr() returns a new string while erase() and assign() modify the existing one Gravatar Attila Molnar2015-01-102-2/+2