aboutsummaryrefslogtreecommitdiff
path: root/include
Commit message (Collapse)AuthorAgeFilesLines
* Release v4.6.0. v4.6.0Gravatar Sadie Powell2025-02-281-1/+1
|
* Update copyright headers.Gravatar InspIRCd Robot2025-02-286-6/+6
|
* Improve the consistency of duration strings.Gravatar Sadie Powell2025-02-281-1/+1
| | | | | | | | | | | | Unfortunately because of leap years we can't really make duration strings exact. Because of this we have always added 6 hours on to each year to make it correct over time. However, we did not do this in any kind of consistent way which resulted in weird roundtripped duration strings which made this very confusing for users While I'm touching the duration code I've also cleaned it up.
* Fix expanding paths on portable installations.Gravatar Sadie Powell2025-02-151-1/+1
| | | | Closes #2148.
* Move RPL_TIME to the numeric header, unify TIME and ALLTIME.Gravatar Sadie Powell2025-02-051-0/+1
|
* Convert debug logging from string concatenation to format strings.Gravatar Sadie Powell2025-01-231-2/+2
| | | | | When running in normal mode this will prevent a bunch of expensive string concatenation.
* Don't format log messages if we can't actually log them.Gravatar Sadie Powell2025-01-111-7/+25
| | | | | This should prevent debug messages from potentially causing performance issues on production servers.
* Release v4.5.0. v4.5.0Gravatar Sadie Powell2025-01-041-1/+1
|
* Update copyright headers.Gravatar InspIRCd Robot2025-01-041-0/+1
|
* Optimized membership lookup for large serversGravatar Glen Miner2024-12-191-1/+1
| | | | On our server hosting 150K users we noticed that std::map lookups for user membership were high on the profile. Since there seemed to be no ordered iteration needed we were able to shave a few % off of the profile by changing this to a std::unordered_map
* Release v4.4.0. v4.4.0Gravatar Sadie Powell2024-11-021-1/+1
|
* Update copyright headers.Gravatar InspIRCd Robot2024-11-024-4/+4
|
* Use fmtlib instead of iostream in ConvToStr where available.Gravatar Sadie Powell2024-11-011-1/+10
|
* All core numerics should be in numeric.h not in .cpp files.Gravatar Sadie Powell2024-10-261-0/+9
|
* Add support for extbans without letters.Gravatar Sadie Powell2024-10-161-1/+1
|
* Allow ConfigTag::getCharacter to return NUL for an empty field.Gravatar Sadie Powell2024-10-161-1/+1
|
* Count services in the global user count.Gravatar Sadie Powell2024-10-101-1/+1
| | | | This behaviour was always kinda broken so lets just drop it.
* Merge branch 'insp3' into insp4.Gravatar Sadie Powell2024-10-101-0/+3
|\
| * When a server stops being ulined remove its users from the uline list.Gravatar Sadie Powell2024-10-101-0/+3
| |
| * Tell people to use the main ChatSpike domain not our alias.Gravatar Sadie Powell2024-07-071-1/+1
| | | | | | | | Backport from master.
* | Add the Time::FromNow helper function.Gravatar Sadie Powell2024-10-031-1/+12
| |
* | Add a type alias for the extban letter type.Gravatar Sadie Powell2024-09-271-8/+11
| |
* | Clean up the names of some variables in the extban header.Gravatar Sadie Powell2024-09-271-31/+31
| |
* | Make Cullable::Deleter const.Gravatar Sadie Powell2024-09-132-2/+2
| |
* | Only remove extbans on unload if provided by the right module.Gravatar Sadie Powell2024-09-131-0/+1
| |
* | Fix rawio logs not being written after a rehash.Gravatar Sadie Powell2024-09-091-0/+3
| |
* | Use string_view in InspIRCd::Is{FQDN,Host,SID}.Gravatar Sadie Powell2024-09-071-3/+3
| |
* | Release v4.3.0. v4.3.0Gravatar Sadie Powell2024-09-071-1/+1
| |
* | Update copyright headers.Gravatar InspIRCd Robot2024-09-079-11/+10
| |
* | Const correct the xline header.Gravatar Sadie Powell2024-09-031-19/+15
| |
* | Use auto in GetLevelRequired and GetSyntax.Gravatar Sadie Powell2024-08-291-5/+2
| |
* | Deprecate the raw overload of GenRandomStr in favour of GenRandom.Gravatar Sadie Powell2024-08-271-1/+8
| | | | | | | | | | | | | | | | 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.
* | 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.Gravatar Sadie Powell2024-08-271-0/+6
| | | | | | | | | | | | 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.
* | Fix a minor doxygen warning.Gravatar Sadie Powell2024-08-271-1/+1
| |
* | Use sa_family_t instead of int.Gravatar Sadie Powell2024-08-273-4/+4
| |
* | Refactor the InspIRCd class to be actually readable.Gravatar Sadie Powell2024-08-271-205/+190
| | | | | | | | | | This has been long overdue as most of the comments were outdated and members were shoved into the class in no logical way.
* | Close loggers and notify opers if they throw any exceptions.Gravatar Sadie Powell2024-08-231-0/+9
| |
* | Fix formatting strings on C++20 compilers.Gravatar Sadie Powell2024-08-225-11/+11
| |
* | Add Numeric::push_fmt(...) as shorthand for push(INSP_FORMAT(...)).Gravatar Sadie Powell2024-08-182-10/+21
| |
* | Add a formatting overload to {Membership,User}::Write(Remote)Notice.Gravatar Sadie Powell2024-08-183-2/+32
| |
* | Document Write* members in the User type correctly.Gravatar Sadie Powell2024-08-181-15/+29
| |
* | Release v4.2.0. v4.2.0Gravatar Sadie Powell2024-08-031-1/+1
| |
* | Update copyright headers.Gravatar InspIRCd Robot2024-08-031-1/+1
| |
* | Add ExtensionItem::OnSync which is called when an ext is synchronised.Gravatar Sadie Powell2024-07-241-0/+7
| |
* | Update all usages of ProtocolServer to use Server.Gravatar Sadie Powell2024-07-242-12/+6
| |
* | Add SendMetadata methods to Server.Gravatar Sadie Powell2024-07-241-0/+13
| |
* | Allow contrib modules to specify their own module version.Gravatar Sadie Powell2024-07-221-0/+13
| |