aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/extra
Commit message (Expand)AuthorAgeFilesLines
...
* | 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
* | Change type of some associative containers to their flat versions, including ...Gravatar Attila Molnar2014-12-155-6/+6
* | Link m_ldap against libldap_rGravatar Adam2014-12-071-2/+2
* | Fix warnings in m_ssl_openssl about the use of `long long` on C++03.Gravatar Peter Powell2014-12-071-0/+7
* | Merge insp20Gravatar Attila Molnar2014-10-273-10/+156
|\|
| * Remove some dead code found by CoverityGravatar Attila Molnar2014-10-261-3/+1
| * Use gnutls_rnd instead of gcry_randomize on newer GnuTLS versions.•••This is a modified version of 690c372. Fixes #905. Gravatar Peter Powell2014-10-251-6/+3
| * m_ssl_openssl Add compile time option that allows disabling renegotiationsGravatar Attila Molnar2014-10-201-0/+61
| * m_ssl_openssl Add compile time option to enable ECDHGravatar Attila Molnar2014-10-201-0/+36
| * m_ssl_gnutls Add compile time option for allowing sha256 certificate fingerpr...Gravatar Attila Molnar2014-10-201-0/+4
| * Initialize all fields of issl_session on module load in SSL modulesGravatar Attila Molnar2014-10-162-1/+3
| * Add interface to SSL modules that allows other modules to obtain the raw SSL ...Gravatar Attila Molnar2014-10-162-0/+12
| * m_ssl_gnutls Refcount GnuTLS objects, free them when they are no longer in us...Gravatar Attila Molnar2014-10-161-66/+110
| * m_ssl_openssl Fix debug messageGravatar Attila Molnar2014-10-151-1/+1
| * m_ssl_openssl Reset data_to_write for new sessionsGravatar Attila Molnar2014-10-151-0/+2
| * m_ssl_openssl Free the ssl_cert object as soon as the session is closed inste...Gravatar Attila Molnar2014-10-151-1/+1
| * m_ssl_openssl Remove bogus errno assignment from CloseSession()Gravatar Attila Molnar2014-10-151-1/+0
| * m_ssl_openssl Return an error from the IOHook read and write functions if the...•••The meaning of a 0 return value quoted from the manual: The TLS/SSL handshake was not successful but was shut down controlled and by the specifications of the TLS/SSL protocol. Gravatar Attila Molnar2014-10-141-1/+1
| * m_ssl_openssl Add user-friendly config options for setting a few OpenSSL cont...Gravatar Attila Molnar2014-10-141-0/+14
| * m_ssl_openssl Allow configuring raw OpenSSL context optionsGravatar Attila Molnar2014-10-101-2/+27
| * m_ssl_openssl Disable session caching and session ticketsGravatar Attila Molnar2014-10-101-2/+5
| * m_ssl_openssl Enable single (EC)DH use and disable SSL v2•••Options enabled: - SSL_OP_NO_SSLv2 - SSL_OP_SINGLE_DH_USE - SSL_OP_SINGLE_ECDH_USE (if it exists) Partial backport of #856 by @jvehent Gravatar Attila Molnar2014-10-101-0/+9
| * m_ssl_openssl Clear the error queue before every SSL_* callGravatar Attila Molnar2014-10-081-0/+9
| * m_ssl_gnutls Re-set DH params when the gnutls_certificate_credentials_t struc...Gravatar Attila Molnar2014-10-031-2/+2
| * m_sqlite3 Fix cleanup of unsuccessful database connectionsGravatar Attila Molnar2014-09-021-2/+5
* | m_ssl_openssl Store a pointer to the OpenSSLIOHook object in SSL objectsGravatar Attila Molnar2014-10-271-0/+8
* | m_ssl_openssl Read the DH params file using the BIO API on all OSesGravatar Attila Molnar2014-07-251-10/+2
* | Merge insp20Gravatar Attila Molnar2014-07-254-24/+37
|\|
| * Make sure the DN strings obtained from the SSL mods are always validGravatar Attila Molnar2014-07-242-4/+22
| * Change Windows libraries to be dynamically linkedGravatar Adam2014-04-135-22/+23
| * m_ssl_openssl Avoid Applink on Windows by calling PEM_read_bio_DHparams() ins...Gravatar Attila Molnar2014-04-131-0/+11
* | Say "SSL certificate fingerprint" instead of "SSL fingerprint" everywhereGravatar Attila Molnar2014-07-192-2/+2
* | Access local user list via new UserManager::GetLocalUsers() and make local_us...Gravatar Attila Molnar2014-07-191-2/+5
* | Move and rename typedef LocalUserList to UserManager::LocalListGravatar Attila Molnar2014-07-191-1/+1
* | Remove current time parameter of the Timer constructorGravatar Attila Molnar2014-07-101-1/+1
* | Set SSL options to sane default and enfore server cipher preferences•••Original PR #856 Gravatar Julien Vehent2014-06-301-0/+3
* | Ignore safe compiler warnings in a more reliable way.Gravatar Peter Powell2014-06-284-20/+38
* | Kill needless #includes in source filesGravatar Attila Molnar2014-06-142-4/+0
* | Change allocation of InspIRCd::Threads to be physically part of the object co...Gravatar Attila Molnar2014-06-133-3/+3