| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Add a formatting overload to {Membership,User}::Write(Remote)Notice. | 2024-08-18 | 1 | -5/+5 | |
| | | |||||
| * | Update copyright headers. | 2024-06-21 | 1 | -1/+1 | |
| | | |||||
| * | Update copyright headers. | 2024-06-07 | 1 | -5/+4 | |
| | | |||||
| * | Allow using multiple SSL fingerprint algorithms. | 2024-02-19 | 1 | -3/+18 | |
| | | | | | Closes #1804. | ||||
| * | Update usages of stdalgo::string::equalsci to use insp::equalsci. | 2023-08-11 | 1 | -3/+3 | |
| | | |||||
| * | Misc grammar fixes. | 2023-06-29 | 1 | -14/+14 | |
| | | |||||
| * | Retain the "real" username properly like we do for hostnames. | 2023-06-29 | 1 | -32/+32 | |
| | | | | | | | | | | | | | | | This introduces the concept of a real username. This value comes from either the initial USER message or from an ident lookup. Doing this allows us to use it for bans through vidents and cloaking web client users using their remote username. While changing this I also changed all of the uses of "ident" other than RFC 1413 lookups and some compatibility cases to refer to usernames as user(name) instead of ident. Our use of ident in these places was incorrect as that only refers to the RFC 1413 response and is not commonly used in the way we used it by any other IRC server implementations. | ||||
| * | Allow modules to provide an error for when a class doesn't match. | 2023-03-24 | 1 | -1/+1 | |
| | | |||||
| * | Refactor the password checking API. | 2023-02-28 | 1 | -1/+1 | |
| | | | | | | | | | | | - Rename from (On)PassCompare to (On)CheckPassword. - Fix the order of the arguments to be password, hash, value. This makes more sense than what it was previously. - Fix the code documentation to not be complete nonsense and not reference ancient outdated APIs. | ||||
| * | Refactor the caching methods in User and rename to make more sense. | 2023-01-24 | 1 | -8/+8 | |
| | | |||||
| * | Convert log calls to use fmtlib format strings | 2023-01-24 | 1 | -10/+10 | |
| | | |||||
| * | Convert WriteToSnoMask/WriteGlobalSno to use fmtlib format strings. | 2023-01-23 | 1 | -9/+8 | |
| | | |||||
| * | Replace InspIRCd::Format with fmt::format. | 2023-01-23 | 1 | -6/+5 | |
| | | |||||
| * | Fix calling various static functions through a type instance. | 2023-01-11 | 1 | -1/+1 | |
| | | |||||
| * | Rework how users are assigned to connect classes. | 2023-01-08 | 1 | -6/+6 | |
| | | | | | | | | | | | | - Move core connect class checks and <performance:clonesonconnect> to the core_user module. - Add pre-change and post-change events for when a connect class changes. - Split explicit class changing out into its own method. - Remove the need to almost always call CheckClass after SetClass. - Add use counting to the connect class instead of relying on the shared_ptr use count. | ||||
| * | Move extension types to their own header to speed up build times. | 2022-12-19 | 1 | -0/+1 | |
| | | |||||
| * | Use in_port_t instead of int/unsigned int/long. | 2022-12-18 | 1 | -2/+2 | |
| | | |||||
| * | Remove the unused Extensible* parameter to PassCompare/OnPassCompare. | 2022-12-10 | 1 | -1/+1 | |
| | | |||||
| * | Avoid copying a shared_ptr where not actually necessary. | 2022-12-01 | 1 | -1/+1 | |
| | | |||||
| * | Add a typedef for sa_family_t on Windows. | 2022-11-16 | 1 | -2/+2 | |
| | | |||||
| * | Use User::IsFullyConnected instead of checking for REG_ALL. | 2022-10-29 | 1 | -1/+1 | |
| | | |||||
| * | Make internal penalty be specified in millisecs instead of seconds. | 2022-09-09 | 1 | -1/+1 | |
| | | | | | This removes the need to multiply it later. | ||||
| * | Default allow_empty_last_param to false. | 2022-09-07 | 1 | -2/+0 | |
| | | |||||
| * | Move aptosa/untosa into the sockaddrs union and add from/from_ip. | 2022-08-11 | 1 | -4/+4 | |
| | | | | | | | | The struct will also now always be zero-initialized by default which removes the footgun which has happened previously where the union has been accessed before being initialized leading to it containing weird values. | ||||
| * | Rename SetClientIP to ChangeRemoteAddress. | 2022-08-10 | 1 | -2/+2 | |
| | | |||||
| * | Switch from NULL to nullptr. | 2022-07-22 | 1 | -2/+2 | |
| | | |||||
| * | Rewrite logging calls to use the new APIs. | 2022-05-01 | 1 | -5/+5 | |
| | | |||||
| * | Abolish the infernal space before accessibility keywords. | 2022-01-25 | 1 | -9/+9 | |
| | | |||||
| * | Add constructors to the TokenList class. | 2022-01-18 | 1 | -1/+1 | |
| | | |||||
| * | Add ConnectClass::Ptr as an alias for std::shared_ptr<ConnectClass>. | 2022-01-16 | 1 | -1/+1 | |
| | | |||||
| * | Refactor CoreException and ModuleException. | 2022-01-07 | 1 | -3/+3 | |
| | | |||||
| * | Promote ExtensionItem::ExtensibleType to a top level enum class. | 2021-12-23 | 1 | -3/+3 | |
| | | |||||
| * | Merge branch 'insp3' into master. | 2021-11-10 | 1 | -8/+24 | |
| | | |||||
| * | Apply the final keyword to all module classes where appropriate. | 2021-10-04 | 1 | -4/+4 | |
| | | |||||
| * | Mark all command classes as final. | 2021-10-01 | 1 | -2/+4 | |
| | | |||||
| * | Merge branch 'insp3' into master. | 2021-07-17 | 1 | -6/+0 | |
| | | |||||
| * | Added -Wshorten-64-to-32 and fixed all warnings. | 2021-05-30 | 1 | -1/+5 | |
| | | |||||
| * | Merge branch 'insp3' into master. | 2021-04-17 | 1 | -2/+7 | |
| | | |||||
| * | Fix a compiler error in the gateway module. | 2021-04-12 | 1 | -2/+2 | |
| | | |||||
| * | Rename the cgiirc module to gateway. | 2021-04-11 | 1 | -0/+534 | |
