aboutsummaryrefslogtreecommitdiff
path: root/src/coremods
Commit message (Expand)AuthorAgeFilesLines
* Update copyright headers.Gravatar InspIRCd Robot2025-02-2814-15/+15
* Remove log messages about failed DIE and RESTART attempts.•••These no longer accept a password so there's no point logging if a user specifies the wrong server name. Gravatar Sadie Powell2025-02-272-10/+1
* Move RPL_TIME to the numeric header, unify TIME and ALLTIME.Gravatar Sadie Powell2025-02-051-7/+3
* Improve the time format in TIME.Gravatar Sadie Powell2025-02-021-1/+2
* Include the timezone name in 003.Gravatar Sadie Powell2025-02-021-1/+1
* RPL_STATSCONN should count registered (not accepted) connections.Gravatar Sadie Powell2025-02-021-1/+1
* Implement RPL_STATSCONN for compatibility with ircu.Gravatar Sadie Powell2025-01-261-0/+10
* Cache the number of global and local servers.Gravatar Sadie Powell2025-01-251-15/+38
* Clean up core_lusers.Gravatar Sadie Powell2025-01-251-10/+8
* Fix unsetting bans that look like extbans but aren't.Gravatar Sadie Powell2025-01-241-1/+1
* Also build isupport for removed but still in use connect classes.Gravatar Sadie Powell2025-01-242-26/+44
* Convert debug logging from string concatenation to format strings.•••When running in normal mode this will prevent a bunch of expensive string concatenation. Gravatar Sadie Powell2025-01-233-12/+15
* Make the length optional in when adding a [EGKQRZ]-line.•••The shun module already behaves like this but the docs were not correct. Gravatar Sadie Powell2025-01-175-40/+40
* Update copyright headers.Gravatar InspIRCd Robot2025-01-042-1/+2
* Cache RPL_CREATED and improve the format slightly.Gravatar Sadie Powell2024-12-281-1/+5
* Fix matching acting extbans when multiple extbans are set.Gravatar Sadie Powell2024-12-231-1/+4
* Optimized WHO command•••On our server hosting 150K users we noticed that the WHO command was high on the perf capture profile and on closer inspection we noticed that the majority of users do not have the invisible mode set. Since IsModeSet is a small inline function that does an array lookup we were able to reduce server load by calling IsModeSet first to short-circuit the comparatively expensive SharesChannelWith call. Gravatar Glen Miner2024-12-191-1/+1
* Avoid repeating the network name in whois.Gravatar Sadie Powell2024-11-051-1/+1
* Update copyright headers.Gravatar InspIRCd Robot2024-11-0211-12/+11
* Add support for extbans without letters.Gravatar Sadie Powell2024-10-161-9/+20
* Tweak <options:modesinlist> to allow only showing to opers.•••This can help opers avoid accidentally invading a secret channel that they can see because of their privileges. Gravatar Sadie Powell2024-10-111-3/+16
* Count services in the global user count.•••This behaviour was always kinda broken so lets just drop it. Gravatar Sadie Powell2024-10-101-6/+3
* Add the Time::FromNow helper function.Gravatar Sadie Powell2024-10-035-5/+5
* Add a type alias for the extban letter type.Gravatar Sadie Powell2024-09-272-4/+4
* Fix rebuilding the 004 numeric on reloading core_info.Gravatar Sadie Powell2024-09-171-6/+9
* Sort the 004 mode list alphabetically.Gravatar Sadie Powell2024-09-171-0/+1
* Only remove extbans on unload if provided by the right module.Gravatar Sadie Powell2024-09-131-2/+7
* Raise an exception if an extban name or letter is already in use.Gravatar Sadie Powell2024-09-131-2/+12
* Send an ISupport diff when a user moves to a new connect class.Gravatar Sadie Powell2024-09-094-0/+40
* Update copyright headers.Gravatar InspIRCd Robot2024-09-0711-12/+11
* Normalise the case of MOD_RESULT variables.Gravatar Sadie Powell2024-08-318-34/+34
* Fix the missing <nick> field in whowas RPL_WHOISACTUALY.Gravatar Sadie Powell2024-08-291-1/+1
* Remove the needless cast of <whowas:maxkeep> in core_whowas.Gravatar Sadie Powell2024-08-281-4/+4
* Tweak the whowas config defaults•••- Decrease the default number of nick groups. - Increase the days to keep records for. - Enable update on nick change by default. - Remove the upper bounds on the fields. Gravatar Sadie Powell2024-08-281-5/+5
* Avoid adding UUID users to the whowas database.Gravatar Sadie Powell2024-08-271-2/+3
* Fix the whowas database not being updated on nick change.Gravatar Sadie Powell2024-08-271-4/+13
* Slightly reduce the memory usage of the WHOWAS database.Gravatar Sadie Powell2024-08-271-3/+9
* Store the actual server name rather than the public name for WHOWAS.•••We check hideserver when sending the numeric anyway. Gravatar Sadie Powell2024-08-271-1/+1
* Replace the InspIRCd-specific RPL_WHOWASIP with RPL_WHOISACTUALLY.•••This makes us more compatible with other server implementations. Gravatar Sadie Powell2024-08-271-4/+5
* Fix measuring the CPU load on Windows.Gravatar Sadie Powell2024-08-271-2/+2
* 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-1/+1
* Add Numeric::push_fmt(...) as shorthand for push(INSP_FORMAT(...)).Gravatar Sadie Powell2024-08-181-1/+1
* Add a formatting overload to {Membership,User}::Write(Remote)Notice.Gravatar Sadie Powell2024-08-181-2/+2
* Update my nick in the INFO output.Gravatar Sadie Powell2024-08-121-1/+1
* Allow contrib modules to specify their own module version.Gravatar Sadie Powell2024-07-221-2/+2
* Update copyright headers.Gravatar InspIRCd Robot2024-07-142-2/+2
* Use auto when extracting the internal type of a message target.Gravatar Sadie Powell2024-07-131-1/+1
* Fix MOTD parsing accidentally skipping lines which are blank.Gravatar Sadie Powell2024-07-051-1/+1
* Update copyright headers.Gravatar InspIRCd Robot2024-06-2122-22/+22
* Update copyright headers.Gravatar InspIRCd Robot2024-06-0764-131/+123