| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Ensure the AUTHENTICATE command always returns a response. | 2024-08-27 | 1 | -0/+6 | |
| | | |||||
| * | Update copyright headers. | 2024-06-21 | 1 | -1/+1 | |
| | | |||||
| * | Update copyright headers. | 2024-06-07 | 1 | -3/+3 | |
| | | |||||
| * | Only abort SASL sessions if the user is using sasl-3.1. | 2024-03-24 | 1 | -3/+1 | |
| | | | | | | | | This is a compromise to allow modern clients to authenticate quickly whilst not breaking old clients. This reverts commit 4b8e69882e8b591102bfb03da1425b04c43272de. | ||||
| * | Add an option for opting-out of aborting incomplete authentication. | 2024-03-01 | 1 | -1/+3 | |
| | | | | | | This goes against the expectations of the spec which can break some clients but also not doing this can break others. Blah. | ||||
| * | Allow using multiple SSL fingerprint algorithms. | 2024-02-19 | 1 | -3/+5 | |
| | | | | | Closes #1804. | ||||
| * | Fix casing of metadata in function and event names. | 2023-05-30 | 1 | -1/+1 | |
| | | | | | Metadata is one word not two so it shouldn't be capitalised like this. | ||||
| * | Add an option so local non-SSL users can be seen as securely connected. | 2023-02-11 | 1 | -6/+3 | |
| | | |||||
| * | Refactor the caching methods in User and rename to make more sense. | 2023-01-24 | 1 | -1/+1 | |
| | | |||||
| * | Convert log calls to use fmtlib format strings | 2023-01-24 | 1 | -3/+3 | |
| | | |||||
| * | Fix calling various static functions through a type instance. | 2023-01-11 | 1 | -1/+1 | |
| | | |||||
| * | Qualify auto correctly in all cases. | 2023-01-10 | 1 | -1/+1 | |
| | | |||||
| * | Avoid copying shared_ptr<ConfigTag> when not necessary. | 2023-01-10 | 1 | -1/+1 | |
| | | |||||
| * | Merge branch 'insp3' into master. | 2023-01-01 | 1 | -1/+1 | |
| |\ | |||||
| | * | Update copyright headers. | 2022-12-30 | 1 | -1/+1 | |
| | | | |||||
| * | | Rework the levels things are logged at to make more sense. | 2022-12-18 | 1 | -2/+2 | |
| | | | |||||
| * | | Yet more stylistic fixes. | 2022-12-01 | 1 | -1/+3 | |
| | | | |||||
| * | | Rename session registration to connection to avoid a semantic conflict. | 2022-10-29 | 1 | -1/+1 | |
| | | | | | | | | | | | | | We previously referred to both session registration and user registration as "registration" which is confusing for users who aren't familiar with how IRC works. | ||||
| * | | Rename the services_account module to account. | 2022-10-18 | 1 | -2/+2 | |
| | | | |||||
| * | | Use auto instead of type names where the type is obvious. | 2022-09-29 | 1 | -1/+1 | |
| | | | |||||
| * | | Fix various cases of the &* being next to the name instead of type. | 2022-09-29 | 1 | -3/+3 | |
| | | | |||||
| * | | Default allow_empty_last_param to false. | 2022-09-07 | 1 | -1/+0 | |
| | | | |||||
| * | | Fix some warnings noticed by the readability-* clang-tidy checkers. | 2022-09-03 | 1 | -2/+2 | |
| | | | |||||
| * | | Modernize various minor legacy C++isms. | 2022-07-30 | 1 | -1/+1 | |
| | | | |||||
| * | | Rewrite logging calls to use the new APIs. | 2022-05-01 | 1 | -4/+4 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2022-04-29 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update copyright headers. | 2022-04-28 | 1 | -1/+1 | |
| | | | |||||
| * | | Make extension names case insensitive. | 2022-01-31 | 1 | -1/+1 | |
| | | | |||||
| * | | Fix a bunch of weird uses of .c_str(). | 2022-01-30 | 1 | -1/+1 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2022-01-30 | 1 | -3/+23 | |
| |\| | |||||
| | * | Abort pre-registration SASL attempts when the user fully connects. | 2022-01-30 | 1 | -3/+23 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | This makes InspIRCd work more like other IRC servers which implement the recommended behaviour from the sasl-3.1 specification: If the client completes registration (with CAP END, NICK, USER and any other necessary messages) while the SASL authentication is still in progress, the server SHOULD abort it and send a 906 numeric, then register the client without authentication. Thanks to @aaronmdjones and @edk0 for finding and reporting this. | ||||
| * | | Abolish the infernal space before accessibility keywords. | 2022-01-25 | 1 | -11/+11 | |
| | | | |||||
| * | | Fix various edge cases in extensible synchronisation. | 2022-01-21 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | | | - Fix not forwarding the accountid extensible if it is set. - Rename the variadic Set() overload to SetFwd(). - Re-add the `const T&` overload of Set(). - Move `bool synced` to SimpleExtItem from StringExtItem. - Only sync extensibles if their instance is marked as syncable. | ||||
| * | | Add constexpr to the initialisation of various const static fields. | 2022-01-18 | 1 | -1/+1 | |
| | | | |||||
| * | | Refactor CoreException and ModuleException. | 2022-01-07 | 1 | -1/+1 | |
| | | | |||||
| * | | Make all extensibles use kebab-case for names where possible. | 2021-12-26 | 1 | -1/+1 | |
| | | | |||||
| * | | Promote ExtensionItem::ExtensibleType to a top level enum class. | 2021-12-23 | 1 | -1/+1 | |
| | | | |||||
| * | | Consistently use `!foo` instead of `foo == NULL`. | 2021-12-03 | 1 | -1/+1 | |
| | | | |||||
| * | | Apply the final keyword to all module classes where appropriate. | 2021-10-04 | 1 | -3/+4 | |
| | | | |||||
| * | | Mark all command classes as final. | 2021-10-01 | 1 | -2/+4 | |
| | | | |||||
| * | | Mark all module classes as final. | 2021-10-01 | 1 | -1/+2 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2021-08-28 | 1 | -0/+1 | |
| |\| | |||||
| | * | Update copyright headers. | 2021-08-27 | 1 | -0/+1 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2021-06-13 | 1 | -4/+6 | |
| |\| | |||||
| | * | Code refactor and minor fix (#1879) | 2021-06-12 | 1 | -1/+4 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2021-05-11 | 1 | -5/+5 | |
| |\| | |||||
| | * | Fix a bunch of weird indentation and spacing issues. | 2021-04-27 | 1 | -10/+10 | |
| | | | |||||
| * | | Remove the SASL fallback event. | 2021-04-27 | 1 | -13/+3 | |
| | | | | | | | | | Nothing has ever used this and we can do better than this. | ||||
| * | | Switch simple iterator loops to use range-based for loops. | 2021-04-07 | 1 | -2/+1 | |
| | | | |||||
| * | | Fix a ton of pedantic compiler warnings. | 2021-04-04 | 1 | -35/+31 | |
| | | | |||||
