aboutsummaryrefslogtreecommitdiff
path: root/src/modules/extra
Commit message (Expand)AuthorAgeFilesLines
* Update copyright headers.Gravatar InspIRCd Robot2025-02-285-5/+5
* Convert debug logging from string concatenation to format strings.•••When running in normal mode this will prevent a bunch of expensive string concatenation. Gravatar Sadie Powell2025-01-235-7/+7
* Update copyright headers.Gravatar InspIRCd Robot2025-01-041-0/+1
* Clear the pgsql output vector before adding new values.Gravatar Larry Williamson2024-12-051-1/+2
* Implement ldap_initialize on Windows using InternetCrackUrlA.•••[skip alpine ci] [skip irctest ci] [skip macos ci] [skip ubuntu ci] Gravatar Sadie Powell2024-09-301-18/+22
* Remove some unnecessary uses of <iostream>.Gravatar Sadie Powell2024-09-161-1/+0
* Use reference<>::ptr() in more places.Gravatar Sadie Powell2024-09-132-2/+2
* Fix needlessly separating threads and lanes in the argon2 module.•••We were not using these correctly and Argon2 uses the thread count as the lane count anyway so its pointless to even have a setting for this. Gravatar Sadie Powell2024-09-051-5/+1
* Deprecate the raw overload of GenRandomStr in favour of GenRandom.•••The raw overload was almost always misused where GenRandom would be better. While we're making changes to this code switch the printable mode to use a static array like Anope does. Gravatar Sadie Powell2024-08-271-3/+4
* Allow building log_json against yyjson.•••This is the default if available. RapidJSON has not had a release in years and has known security vulnerabilities so we should really not be using it. Gravatar Sadie Powell2024-08-231-12/+56
* Add a helper template for checking MySQL errors.Gravatar Sadie Powell2024-08-061-3/+12
* Fix the pgsql module showing duplicate packages on Ubuntu.•••This is covered by the debian-like constraint above. Gravatar Sadie Powell2024-08-041-1/+0
* Fix trying to fetch more MySQL rows than are available.•••MySQL returns -1 on error in an unsigned field which was breaking this. Gravatar Sadie Powell2024-08-041-1/+2
* Fix shadowing messages in pgsql and regex_pcre2.Gravatar Sadie Powell2024-07-222-8/+8
* Update copyright headers.Gravatar InspIRCd Robot2024-07-148-10/+8
* Modernise PackageInfo directives.•••- Add Alpine packages. - Add missing directives to log_json. - Drop obsolete version constraints. - Use system-like for debian and rhel. Gravatar Sadie Powell2024-07-1311-37/+38
* Shrink the geo_maxmind storage after garbage collection.Gravatar Sadie Powell2024-07-071-0/+1
* Fix a memory leak in the regex_pcre2 module.Gravatar Sadie Powell2024-07-071-0/+4
* Update copyright headers.Gravatar InspIRCd Robot2024-06-213-3/+3
* Add MD5 as a fallback hash in the SSL modules for compat with v3.Gravatar Sadie Powell2024-06-192-2/+2
* Rename regex_pcre back to regex_pcre2.•••This rename happened before we had config compatibility and it doesn't make sense to keep it anymore. Gravatar Sadie Powell2024-06-072-1/+1
* Update copyright headers.Gravatar InspIRCd Robot2024-06-0714-26/+20
* Merge branch 'insp3' into insp4.Gravatar Sadie Powell2024-06-071-1/+1
|\
| * Update copyright headers.Gravatar InspIRCd Robot2024-06-072-2/+2
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2024-05-201-0/+6
|\|
| * Deallocate the old MySQL connection on connect if one exists.Gravatar Sadie Powell2024-05-031-0/+6
* | Don't allow users to opt-in to older versions of Argon2.Gravatar Sadie Powell2024-05-101-8/+1
* | Add SRV record support to the mysql module.Gravatar Sadie Powell2024-05-101-2/+17
* | Move ssl_mbedtls to inspircd-contrib.•••Closes #2088. Gravatar Sadie Powell2024-04-151-1062/+0
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2024-04-011-0/+5
|\|
| * Silence some compatibility warnings in ssl_mbedtls.Gravatar Sadie Powell2024-04-011-0/+5
* | Allow using multiple SSL fingerprint algorithms.•••Closes #1804. Gravatar Sadie Powell2024-02-193-55/+86
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-12-141-1/+1
|\|
| * Fix the Windows build.•••[skip alpine ci] [skip irctest ci] [skip macos ci] [skip ubuntu ci] Gravatar Sadie Powell2023-12-141-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-11-141-3/+4
|\|
| * Fix a crash on shutdown when using ssl_gnutls on some systems.Gravatar Sadie Powell2023-11-061-2/+4
* | Try to help users with outdated SSL module configs.Gravatar Sadie Powell2023-09-083-0/+24
* | Move TokenList back to its own header and move INSP_FORMAT to compat.•••This allows making stringutils an optional header given that most of it is not used by most of the codebase. Gravatar Sadie Powell2023-09-033-0/+3
* | Assume an empty <sslprofile:provider> means the current module.Gravatar Sadie Powell2023-08-153-6/+6
* | Rename the error log level to critical.•••"ERROR" is apparently defined by more than just Windows. Let's pick a different name which is less likely to cause collisions. Gravatar Sadie Powell2023-08-114-6/+6
* | Update usages of stdalgo::string::equalsci to use insp::equalsci.Gravatar Sadie Powell2023-08-117-14/+21
* | Make config file cache invalidation more useful.Gravatar Sadie Powell2023-08-062-12/+2
* | Invalidate the file cache when reading SSL certs.•••This fixes reading the same file when the SSL certs are reloaded without a full rehash (e.g. via SIGUSR1 or /REHASH -ssl). This also reverts 8f0d732e38. Gravatar Sadie Powell2023-07-032-8/+16
* | Replace FileReader with something more sensible.Gravatar Sadie Powell2023-07-031-6/+4
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-06-172-2/+2
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2023-06-162-2/+2
* | Implement support for SPKI fingerprints into the ssl_gnutls module.Gravatar Sadie Powell2023-06-111-1/+46
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-06-051-1/+1
|\|
| * Use -std=c++17 on RE2 2023.06.02 or newer.Gravatar Sadie Powell2023-06-051-0/+2
| * Fix ssl_openssl on OpenSSL versions older than 1.1.1.•••Fixes a regression introduced in commit eba5cb9dc9. Gravatar Sadie Powell2023-05-281-0/+4