aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Expand)AuthorAgeFilesLines
...
| * | 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
| * | 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-274-8/+32
| * | Use GenRandom instead of GenRandomInt to populate Bcrypt entropy.Gravatar Sadie Powell2024-08-271-2/+1
| * | Fix measuring the CPU load on Windows.Gravatar Sadie Powell2024-08-272-6/+6
| * | 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-274-4/+9
* | | Fix the case of some InspIRCd class member variables.Gravatar Sadie Powell2024-08-272-10/+9
* | | Merge branch 'insp4' into master.Gravatar Sadie Powell2024-08-275-23/+23
|\| |
| * | Use sa_family_t instead of int.Gravatar Sadie Powell2024-08-273-4/+4
| * | 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-272-19/+19
| * | Remove prototype for the now removed SendLegacyListModes function.Gravatar Sadie Powell2024-08-251-1/+0
| * | Fix broadcasting mode lists to remote v3 servers.Gravatar Sadie Powell2024-08-242-76/+41
| * | Fix broadcasting server information to remote v3 servers.Gravatar Sadie Powell2024-08-243-9/+35
* | | Replace stalgo::erase with C++20 std::erase.Gravatar Sadie Powell2024-08-253-5/+5
* | | Merge branch 'insp4' into master.Gravatar Sadie Powell2024-08-231-5/+34
|\| |
| * | Close loggers and notify opers if they throw any exceptions.Gravatar Sadie Powell2024-08-231-5/+34
| * | Allow building log_json against yyjson.•••This is the default if available. RapidJSON has not had a release in years and has known security vulnerabilities so we should really not be using it. Gravatar Sadie Powell2024-08-231-12/+56
| * | Make it clear which is the current client fingerprint.Gravatar Sadie Powell2024-08-191-1/+6
* | | Use C++20 <format> instead of fmtlib when available.Gravatar Sadie Powell2024-08-2214-48/+50
* | | Merge branch 'insp4' into master.Gravatar Sadie Powell2024-08-181-1/+2
|\| |
| * | Add Numeric::push_fmt(...) as shorthand for push(INSP_FORMAT(...)).Gravatar Sadie Powell2024-08-182-2/+2
| * | Add a formatting overload to {Membership,User}::Write(Remote)Notice.Gravatar Sadie Powell2024-08-1814-35/+35
| * | Update my nick in the INFO output.Gravatar Sadie Powell2024-08-121-1/+1
| * | Use 1 as the first membership id not 0.•••This doesn't change anything in the protocol but makes identifying whether a user has been assigned a membership id easier while debugging. Gravatar Sadie Powell2024-08-111-1/+1
| * | Add a helper template for checking MySQL errors.Gravatar Sadie Powell2024-08-061-3/+12
* | | Merge branch 'insp4' into master.Gravatar Sadie Powell2024-08-043-3/+3
|\| |
| * | Fix the pgsql module showing duplicate packages on Ubuntu.•••This is covered by the debian-like constraint above. Gravatar Sadie Powell2024-08-041-1/+0
| * | Fix trying to fetch more MySQL rows than are available.•••MySQL returns -1 on error in an unsigned field which was breaking this. Gravatar Sadie Powell2024-08-041-1/+2
| * | Fix bursting server metadata.Gravatar Sadie Powell2024-08-031-2/+2
| * | Release v4.2.0. v4.2.0Gravatar Sadie Powell2024-08-031-1/+1
| * | Update copyright headers.Gravatar InspIRCd Robot2024-08-0310-10/+9
| * | Only allow the IRCv3 WebSocket subprotocols on client connections.Gravatar Sadie Powell2024-07-311-2/+2
* | | Merge branch 'insp4' into master.Gravatar Sadie Powell2024-07-293-27/+43
|\| |
| * | Fix some minor bugs in EscapeTag/UnescapeTag.Gravatar Sadie Powell2024-07-291-25/+24
| * | Avoid passing malformed socket addresses to sa2cidr.Gravatar Sadie Powell2024-07-291-2/+10
| * | Log when a user has an unknown socket type in User::GetCIDRMask.Gravatar Sadie Powell2024-07-291-0/+9
| * | Move 1205 UID compatibility code to PreProcessOldProtocolMessage.•••This should make it more reliable. Gravatar Sadie Powell2024-07-243-8/+16
* | | Merge branch 'insp4' into master.Gravatar Sadie Powell2024-07-242-2/+16
|\| |
| * | Synchronise extensibles in Sync even if they have no value.Gravatar Sadie Powell2024-07-241-2/+1
| * | Add ExtensionItem::OnSync which is called when an ext is synchronised.Gravatar Sadie Powell2024-07-243-0/+17
| * | Don't resync the silence list when it comes from the network.•••This isn't presently networked but it should prevent future issues. Gravatar Sadie Powell2024-07-241-1/+1
| * | Update all usages of ProtocolServer to use Server.Gravatar Sadie Powell2024-07-247-51/+13
| * | Add SendMetadata methods to Server.Gravatar Sadie Powell2024-07-243-0/+26
* | | Remove support for the v3 server protocol.Gravatar Sadie Powell2024-07-231-3/+2
* | | Merge branch 'insp4' into master.Gravatar Sadie Powell2024-07-224-11/+20
|\| |
| * | Fix shadowing messages in pgsql and regex_pcre2.Gravatar Sadie Powell2024-07-222-8/+8
| * | Show the right config option when not forking.Gravatar Sadie Powell2024-07-221-1/+2
| * | Revert module flags to the way they worked in v3.Gravatar Sadie Powell2024-07-221-1/+1