aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/extra
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright headers.Gravatar InspIRCd Robot2022-12-309-13/+8
|
* Fix an incompatibility between MySQL and MariaDB.Gravatar Sadie Powell2022-12-181-0/+2
|
* Add SSL support to the mysql module.Gravatar Sadie Powell2022-12-181-0/+4
|
* Add a sslprofile option for disabling TLS 1.3 in ssl_openssl.Gravatar Sadie Powell2022-12-101-0/+6
| | | | | This mirrors the options (<sslprofile:tlsv{1,11,12}>) for other TLS versions.
* Import regex_pcre2 from inspircd-contrib.Gravatar Sadie Powell2022-12-052-2/+110
| | | | | | The original plan was to make the PCRE2 switch happen in v3 but it seems that distributions are beginning to unpackage the old pcre library already.
* Use gnutls_digest_get_id if supported by the GnuTLS library.Gravatar Sadie Powell2022-11-291-1/+4
|
* Fix asserting when building against libstdc++ in debug mode.Gravatar Sadie Powell2022-11-281-1/+1
| | | | | This code was safe as the pointer was never actually dereferenced but libstdc++ would assert on it anyway.
* Allow building regex_posix against PCRE on Windows for link compat.Gravatar Sadie Powell2022-09-211-2/+8
|
* Fix the ldap module when building against Windows LDAP.Gravatar Sadie Powell2022-09-211-16/+75
|
* Fix the name of the compiler flags attribute in the ldap module.Gravatar Sadie Powell2022-09-011-1/+1
|
* Update copyright headers.Gravatar InspIRCd Robot2022-08-252-1/+2
|
* Fix the argon2 package name on newer versions of Debian.Gravatar Sadie Powell2022-05-061-1/+1
|
* Fix using the obsolete curve method on mbedTLS 3+.Gravatar Sadie Powell2022-05-021-6/+17
|
* Update copyright headers.Gravatar InspIRCd Robot2022-04-284-5/+5
|
* Allow building with license-incompatible modules if manually enabled.Gravatar Sadie Powell2022-04-242-3/+3
| | | | | | [skip alpine ci] [skip macos ci] [skip ubuntu ci]
* GnuTLS DH parameters are optional from 3.6.0+ not 3.5.6+.Gravatar Sadie Powell2022-04-071-1/+1
|
* Work around the deprecation of the old curve API in OpenSSL 3.0.0.Gravatar Sadie Powell2022-01-251-3/+9
|
* Work around the deprecation of manual DH params in OpenSSL 3.0.0.Gravatar Sadie Powell2022-01-211-0/+13
| | | | | | As of this version specifying custom DH parameters is deprecated and should not be used. Instead, a default (secure) DH parameters will be used.
* Work around the deprecation of manual DH params in GnuTLS 3.5.6.Gravatar Sadie Powell2022-01-211-1/+17
| | | | | | As of this version specifying custom DH parameters is deprecated and should not be used. Instead, a default (secure) DH parameters will be used.
* Fix the regex_re2 module on the latest RE2 git.Gravatar Sadie Powell2022-01-181-1/+1
| | | | [skip windows ci]
* Fix ssl_openssl on OpenSSL 1.0.Gravatar Sadie Powell2022-01-071-1/+1
|
* Update copyright headers.Gravatar InspIRCd Robot2021-12-301-1/+1
|
* Add a build time check that OpenLDAP is reentrant.Gravatar Sadie Powell2021-12-141-0/+4
|
* Fix the ldap module on OpenLDAP 2.5.Gravatar Sadie Powell2021-12-141-1/+2
|
* Fix LDAPCompare checking against the wrong return code.Gravatar Sadie Powell2021-12-011-8/+10
| | | | Better fix for #1946.
* Fix use of auto_ptr in the ssl_gnutls module on C++17 compilers.Gravatar Sadie Powell2021-11-041-12/+16
|
* Silence a warning in the mysql module on MySQL 8.0.27.Gravatar Sadie Powell2021-10-251-1/+8
|
* Make reading DNs more consistent across modules.Gravatar Sadie Powell2021-10-143-23/+23
| | | | | | | | | - If the DN contains a new line character then replace it with a space instead of killing the entire DN in the ssl_gnutls and ssl_openssl modules. - Apply the same logic to ssl_mbedtls which previously did not handle spaces in DNs.
* Make the deprecation of LibreSSL support more explicit.Gravatar Sadie Powell2021-10-051-1/+1
|
* Send SSL profile reloading errors to snomask `a`.Gravatar Sadie Powell2021-09-223-3/+3
|
* Add an API for checking if I/O hooks are ready or not.Gravatar Sadie Powell2021-09-223-50/+31
|
* Fix ssl_openssl on a broken fork of OpenSSL.Gravatar Sadie Powell2021-09-071-1/+3
|
* Update copyright headers.Gravatar InspIRCd Robot2021-08-272-3/+2
|
* Fix using the wrong variable for the ciphersuites in ssl_openssl.Gravatar Sadie Powell2021-07-191-1/+1
|
* Fix ssl_mbedtls on mbedTLS v3.Gravatar Sadie Powell2021-07-171-1/+17
|
* Allow reloading SSL profiles on rehash.Gravatar Sadie Powell2021-06-243-7/+9
|
* Add a log message to the SSL mods to remind users how to reload profiles.Gravatar Sadie Powell2021-06-243-0/+15
|
* Fix various spelling issues (#1883).Gravatar Josh Soref2021-06-215-17/+17
| | | | Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>
* Clean up VerifyCertificate in the ssl_gnutls module.Gravatar Sadie Powell2021-06-141-39/+23
|
* Migrate Windows builds to installing their dependencies via Conan.Gravatar Sadie Powell2021-06-072-2/+2
|
* Implement support for setting TLSv1.3 ciphersuites in ssl_openssl.Gravatar Sadie Powell2021-05-251-1/+25
|
* Update copyright headers.Gravatar InspIRCd Robot2021-05-145-6/+6
|
* Fix the Ubuntu package name for ssl_gnutls.Gravatar Sadie Powell2021-05-071-1/+1
|
* Switch from the Ubuntu 16.04 image to the 18.04 Ubuntu image.Gravatar Sadie Powell2021-05-071-1/+1
| | | | | | | The Argon2 PPA is broken again and I don't want to deal with the stress of working out why. The 16.04 image is EOL soon (see actions/virtual-environments/#1084) so switching off it is just easier.
* Fix a bunch of weird indentation and spacing issues.Gravatar Sadie Powell2021-04-273-3/+3
|
* Update the module descriptions.Gravatar Sadie Powell2021-04-215-5/+5
|
* Update references to config fields which were renamed.Gravatar Sadie Powell2021-04-143-3/+3
|
* Add a subclass of IOHookProvider for SSL modules.Gravatar Sadie Powell2021-03-093-6/+6
|
* Update copyright headers.Gravatar InspIRCd Robot2021-03-052-2/+3
|
* Update copyright headers.Gravatar InspIRCd Robot2021-02-265-4/+5
|