aboutsummaryrefslogtreecommitdiff
path: root/include/inspircd.h
Commit message (Expand)AuthorAgeFilesLines
* Update copyright headers.Gravatar InspIRCd Robot2026-06-051-1/+1
* Update copyright headers.Gravatar InspIRCd Robot2026-03-311-1/+1
* Fix some minor doxygen warnings.Gravatar Sadie Powell2026-03-081-1/+1
* Update copyright headers.Gravatar InspIRCd Robot2025-02-281-1/+1
* Fix expanding paths on portable installations.•••Closes #2148. Gravatar Sadie Powell2025-02-151-1/+1
* Make Cullable::Deleter const.Gravatar Sadie Powell2024-09-131-1/+1
* Use string_view in InspIRCd::Is{FQDN,Host,SID}.Gravatar Sadie Powell2024-09-071-3/+3
* Update copyright headers.Gravatar InspIRCd Robot2024-09-071-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. Gravatar Sadie Powell2024-08-271-1/+8
* Fix the argument to BindPorts not being documented.Gravatar Sadie Powell2024-08-271-1/+2
* Fix measuring the CPU load on Windows.Gravatar Sadie Powell2024-08-271-9/+6
* Redocument ServerStats and switch members to use size_t.Gravatar Sadie Powell2024-08-271-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. Gravatar Sadie Powell2024-08-271-0/+6
* Use sa_family_t instead of int.Gravatar Sadie Powell2024-08-271-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. Gravatar Sadie Powell2024-08-271-205/+190
* Update copyright headers.Gravatar InspIRCd Robot2024-06-071-4/+1
* QuickExit is obsolete again so we can remove it again.Gravatar Sadie Powell2023-10-171-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. Gravatar Sadie Powell2023-09-031-1/+1
* Normalise the case of ServerStats.Gravatar Sadie Powell2023-07-131-2/+2
* Misc grammar fixes.Gravatar Sadie Powell2023-06-291-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. Gravatar Sadie Powell2023-06-291-7/+7
* Rename duration to timeutils and relocate InspIRCd::TimeString.Gravatar Sadie Powell2023-05-101-9/+0
* Merge branch 'insp3' into master.Gravatar Sadie Powell2023-04-281-1/+1
|\
| * Update copyright headers.Gravatar InspIRCd Robot2023-04-281-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. Gravatar Sadie Powell2023-02-281-10/+7
* | Rename some headers to match the common naming system.Gravatar Sadie Powell2023-01-261-1/+1
* | Replace VAFORMAT/InspIRCd::Format/... with fmt::sprintf.Gravatar Sadie Powell2023-01-231-7/+0
* | Replace InspIRCd::Format with fmt::format.Gravatar Sadie Powell2023-01-231-1/+0
* | Default more stuff inline in the InspIRCd class.Gravatar Sadie Powell2023-01-231-4/+4
* | Move duration functions to their own header.Gravatar Sadie Powell2023-01-231-27/+0
* | Fix some Doxygen comment issues.Gravatar Sadie Powell2023-01-211-0/+1
* | Add support for SCTP listeners.Gravatar Sadie Powell2023-01-161-1/+1
* | Remove some more unnecessary things from the global headers.Gravatar Sadie Powell2023-01-141-2/+0
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-01-131-1/+8
|\|
| * Fix core_dns rejecting simple hostnames.Gravatar Sadie Powell2023-01-131-1/+8
* | Avoid copying shared_ptr<ConfigTag> when not necessary.Gravatar Sadie Powell2023-01-101-1/+1
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2023-01-011-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2022-12-301-1/+1
* | Move cull_delete to be inside of Cullable.Gravatar Sadie Powell2022-12-271-1/+1
* | Remove the string_view utility header from the global header.Gravatar Sadie Powell2022-12-231-1/+0
* | Remove the unused Extensible* parameter to PassCompare/OnPassCompare.Gravatar Sadie Powell2022-12-101-2/+1
* | More const correctness work.Gravatar Sadie Powell2022-12-081-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. Gravatar Sadie Powell2022-11-281-1/+1
* | Use string_view in IsNick/IsIdent/IsChannel.Gravatar Sadie Powell2022-11-211-4/+4
* | Fix various cases of the &* being next to the name instead of type.Gravatar Sadie Powell2022-09-291-2/+2
* | Fix some warnings noticed by the readability-* clang-tidy checkers.Gravatar Sadie Powell2022-09-031-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. Gravatar Sadie Powell2022-09-011-1/+0
* | Switch from NULL to nullptr.Gravatar Sadie Powell2022-07-221-5/+5
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-07-191-0/+8
|\|
| * Also use binary exit codes in places that terminate abruptly.•••This is a partial reversion of commit 57330e973b3eb1f2a84803c84daf9d6b420859fd. Gravatar Sadie Powell2022-07-191-0/+8