| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Update copyright headers. | 2024-09-07 | 1 | -3/+2 | |
| * | 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. | 2024-08-27 | 1 | -1/+8 | |
| * | Fix the argument to BindPorts not being documented. | 2024-08-27 | 1 | -1/+2 | |
| * | Fix measuring the CPU load on Windows. | 2024-08-27 | 1 | -9/+6 | |
| * | Redocument ServerStats and switch members to use size_t. | 2024-08-27 | 1 | -25/+16 | |
| * | Change InspIRCd::ProcessColors to take a string instead of a vector.•••This is more useful for how MOTDs are processed now as we iterate through them anyway and this allows us to avoid a needless second iteration. | 2024-08-27 | 1 | -0/+6 | |
| * | Use sa_family_t instead of int. | 2024-08-27 | 1 | -1/+1 | |
| * | Refactor the InspIRCd class to be actually readable.•••This has been long overdue as most of the comments were outdated and members were shoved into the class in no logical way. | 2024-08-27 | 1 | -205/+190 | |
| * | Update copyright headers. | 2024-06-07 | 1 | -4/+1 | |
| * | QuickExit is obsolete again so we can remove it again. | 2023-10-17 | 1 | -8/+0 | |
| * | 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. | 2023-09-03 | 1 | -1/+1 | |
| * | Normalise the case of ServerStats. | 2023-07-13 | 1 | -2/+2 | |
| * | Misc grammar fixes. | 2023-06-29 | 1 | -1/+1 | |
| * | Retain the "real" username properly like we do for hostnames.•••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. | 2023-06-29 | 1 | -7/+7 | |
| * | Rename duration to timeutils and relocate InspIRCd::TimeString. | 2023-05-10 | 1 | -9/+0 | |
| * | Merge branch 'insp3' into master. | 2023-04-28 | 1 | -1/+1 | |
| |\ | |||||
| | * | Update copyright headers. | 2023-04-28 | 1 | -1/+1 | |
| * | | Refactor the password checking API.•••- 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. | 2023-02-28 | 1 | -10/+7 | |
| * | | Rename some headers to match the common naming system. | 2023-01-26 | 1 | -1/+1 | |
| * | | Replace VAFORMAT/InspIRCd::Format/... with fmt::sprintf. | 2023-01-23 | 1 | -7/+0 | |
| * | | Replace InspIRCd::Format with fmt::format. | 2023-01-23 | 1 | -1/+0 | |
| * | | Default more stuff inline in the InspIRCd class. | 2023-01-23 | 1 | -4/+4 | |
| * | | Move duration functions to their own header. | 2023-01-23 | 1 | -27/+0 | |
| * | | Fix some Doxygen comment issues. | 2023-01-21 | 1 | -0/+1 | |
| * | | Add support for SCTP listeners. | 2023-01-16 | 1 | -1/+1 | |
| * | | Remove some more unnecessary things from the global headers. | 2023-01-14 | 1 | -2/+0 | |
| * | | Merge branch 'insp3' into master. | 2023-01-13 | 1 | -1/+8 | |
| |\| | |||||
| | * | Fix core_dns rejecting simple hostnames. | 2023-01-13 | 1 | -1/+8 | |
| * | | 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 | |
| * | | Move cull_delete to be inside of Cullable. | 2022-12-27 | 1 | -1/+1 | |
| * | | Remove the string_view utility header from the global header. | 2022-12-23 | 1 | -1/+0 | |
| * | | Remove the unused Extensible* parameter to PassCompare/OnPassCompare. | 2022-12-10 | 1 | -2/+1 | |
| * | | More const correctness work. | 2022-12-08 | 1 | -1/+1 | |
| * | | Refactor the internals of the oper system.•••- Allow overriding privileges from the <class> blocks in the <type> and <oper> blocks. - Separate oper types from oper accounts in the code. This enables moving some core stuff out of the config tag later. - Merge the config tags together to make a synthetic tag that can have getXXX called on it instead of using getConfig and then converting it. - Move the details of Have*Permission into the oper type class. - Improve oper events to allow modules to easily hook into the oper system. | 2022-11-28 | 1 | -1/+1 | |
| * | | Use string_view in IsNick/IsIdent/IsChannel. | 2022-11-21 | 1 | -4/+4 | |
| * | | Fix various cases of the &* being next to the name instead of type. | 2022-09-29 | 1 | -2/+2 | |
| * | | Fix some warnings noticed by the readability-* clang-tidy checkers. | 2022-09-03 | 1 | -3/+3 | |
| * | | Rip out the extensible/user serialisation system.•••This was part of a failed attempt to implement zero downtime restarts in v3. This can be implemented in a better way but for now its just slowing down build times so lets kill it. | 2022-09-01 | 1 | -1/+0 | |
| * | | Switch from NULL to nullptr. | 2022-07-22 | 1 | -5/+5 | |
| * | | Merge branch 'insp3' into master. | 2022-07-19 | 1 | -0/+8 | |
| |\| | |||||
| | * | Also use binary exit codes in places that terminate abruptly.•••This is a partial reversion of commit 57330e973b3eb1f2a84803c84daf9d6b420859fd. | 2022-07-19 | 1 | -0/+8 | |
| * | | Make dynamic a non-default header. | 2022-06-26 | 1 | -0/+1 | |
| * | | Make clientprotocol{msg,event} and numericbuilder non-default headers. | 2022-06-26 | 1 | -4/+0 | |
| * | | Move numerics to the source files where they are actually used. | 2022-06-26 | 1 | -1/+0 | |
| * | | Get rid of GetVersionString.•••TODO: split fullversion/version into individual fields. | 2022-05-17 | 1 | -5/+0 | |
| * | | Get rid of entrypoint, specify the main function name directly. | 2022-05-07 | 1 | -2/+0 | |
| * | | Rewrite the entire logging system.•••- Much cleaner API for writing to the log. - Adds support for stderr and stdout logging to the core. - Adds support for sql and syslog logging in modules. | 2022-05-01 | 1 | -1/+2 | |
| * | | Delete the old logging system. | 2022-05-01 | 1 | -2/+0 | |
