aboutsummaryrefslogtreecommitdiff
path: root/src/modules/extra/m_ssl_mbedtls.cpp
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'insp3' into master.Gravatar Sadie Powell2023-01-251-2/+2
|\
| * Fix PackageInfo directives in extra modules.Gravatar Sadie Powell2023-01-191-2/+2
* | Replace getInt/getUInt/getFloat with type safe templated functions.Gravatar Sadie Powell2023-01-251-4/+4
* | Fix using (unsigned) long instead of (s)size_t.Gravatar Sadie Powell2023-01-241-1/+1
* | Convert log calls to use fmtlib format stringsGravatar Sadie Powell2023-01-241-2/+3
* | Log the versions of third-party libraries used by modules.Gravatar Sadie Powell2023-01-191-1/+3
* | Avoid copying shared_ptr<IOHookProvider> when not necessary.Gravatar Sadie Powell2023-01-101-1/+1
* | Avoid copying shared_ptr<ConfigTag> when not necessary.Gravatar Sadie Powell2023-01-101-2/+2
* | Pass the client/server sockaddr around as a ref instead of a ptr.Gravatar Sadie Powell2022-12-251-1/+1
* | Rework the levels things are logged at to make more sense.Gravatar Sadie Powell2022-12-181-2/+2
* | More const correctness.Gravatar Sadie Powell2022-10-231-1/+1
* | Switch the ssl_mbedtls module to use ifstream instead of FileReader.•••Using FileReader here is problematic because it means that certs can't be reloaded without a full rehash. Gravatar Sadie Powell2022-10-111-5/+6
* | Fix various cases of the &* being next to the name instead of type.Gravatar Sadie Powell2022-09-291-1/+1
* | Fix some warnings noticed by the bugprone-* clang-tidy checkers.Gravatar Sadie Powell2022-09-031-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-08-271-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2022-08-251-1/+1
* | Switch from NULL to nullptr.Gravatar Sadie Powell2022-07-221-7/+7
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-05-021-6/+17
|\|
| * Fix using the obsolete curve method on mbedTLS 3+.Gravatar Sadie Powell2022-05-021-6/+17
* | Rewrite logging calls to use the new APIs.Gravatar Sadie Powell2022-05-011-4/+4
* | Abolish the infernal space before accessibility keywords.Gravatar Sadie Powell2022-01-251-18/+18
* | Always catch exceptions as a constant reference.Gravatar Sadie Powell2022-01-091-1/+1
* | Refactor CoreException and ModuleException.Gravatar Sadie Powell2022-01-071-5/+10
* | Promote ExtensionItem::ExtensibleType to a top level enum class.Gravatar Sadie Powell2021-12-231-2/+2
* | Fix a bunch of cases where module types were not marked as final.Gravatar Sadie Powell2021-11-281-4/+7
* | Add a snomask flag for rehash messages.Gravatar Sadie Powell2021-11-281-2/+2
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-10-141-0/+2
|\|
| * Make reading DNs more consistent across modules.•••- 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. Gravatar Sadie Powell2021-10-141-0/+2
* | Apply the final keyword to all module classes where appropriate.Gravatar Sadie Powell2021-10-041-11/+16
* | Mark all module classes as final.Gravatar Sadie Powell2021-10-011-1/+2
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-09-231-20/+11
|\|
| * Send SSL profile reloading errors to snomask `a`.Gravatar Sadie Powell2021-09-221-1/+1
| * Add an API for checking if I/O hooks are ready or not.Gravatar Sadie Powell2021-09-221-19/+10
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-07-171-1/+17
|\|
| * Fix ssl_mbedtls on mbedTLS v3.Gravatar Sadie Powell2021-07-171-1/+17
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-07-011-1/+1
|\|
| * Allow reloading SSL profiles on rehash.Gravatar Sadie Powell2021-06-241-2/+3
| * Add a log message to the SSL mods to remind users how to reload profiles.Gravatar Sadie Powell2021-06-241-0/+5
| * Fix various spelling issues (#1883).•••Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> Gravatar Josh Soref2021-06-211-1/+1
* | Added -Wshorten-64-to-32 and fixed all warnings.Gravatar Dominic Hamon2021-05-301-11/+15
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-05-111-1/+1
|\|
| * Fix a bunch of weird indentation and spacing issues.Gravatar Sadie Powell2021-04-271-1/+1
| * Update references to config fields which were renamed.Gravatar Sadie Powell2021-04-141-1/+1
* | Refactor the hex encoding function.Gravatar Sadie Powell2021-05-101-1/+1
* | Migrate IOHookProvider from reference<> to std::shared_ptr<>.Gravatar Sadie Powell2021-04-091-8/+7
* | Default to rehashing TLS certificates on rehash.Gravatar Sadie Powell2021-04-081-1/+7
* | Refer to encryption as TLS instead of SSL in all messages.Gravatar Sadie Powell2021-04-081-8/+7
* | Switch simple iterator loops to use range-based for loops.Gravatar Sadie Powell2021-04-071-5/+2
* | Fix a ton of pedantic compiler warnings.Gravatar Sadie Powell2021-04-041-1/+1
* | Constify variables within loops.Gravatar Sadie Powell2021-04-011-1/+1