| Commit message (Expand) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| | * | | Fix the whowas database not being updated on nick change. | 2024-08-27 | 1 | -4/+13 | ||
| | * | | Slightly reduce the memory usage of the WHOWAS database. | 2024-08-27 | 1 | -3/+9 | ||
| | * | | Store the actual server name rather than the public name for WHOWAS.•••We check hideserver when sending the numeric anyway. | 2024-08-27 | 1 | -1/+1 | ||
| | * | | Replace the InspIRCd-specific RPL_WHOWASIP with RPL_WHOISACTUALLY.•••This makes us more compatible with other server implementations. | 2024-08-27 | 1 | -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. | 2024-08-27 | 4 | -8/+32 | ||
| | * | | Use GenRandom instead of GenRandomInt to populate Bcrypt entropy. | 2024-08-27 | 1 | -2/+1 | ||
| | * | | Fix measuring the CPU load on Windows. | 2024-08-27 | 2 | -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. | 2024-08-27 | 4 | -4/+9 | ||
| * | | | Fix the case of some InspIRCd class member variables. | 2024-08-27 | 2 | -10/+9 | ||
| * | | | Merge branch 'insp4' into master. | 2024-08-27 | 5 | -23/+23 | ||
| |\| | | ||||||
| | * | | Use sa_family_t instead of int. | 2024-08-27 | 3 | -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. | 2024-08-27 | 2 | -19/+19 | ||
| | * | | Remove prototype for the now removed SendLegacyListModes function. | 2024-08-25 | 1 | -1/+0 | ||
| | * | | Fix broadcasting mode lists to remote v3 servers. | 2024-08-24 | 2 | -76/+41 | ||
| | * | | Fix broadcasting server information to remote v3 servers. | 2024-08-24 | 3 | -9/+35 | ||
| * | | | Replace stalgo::erase with C++20 std::erase. | 2024-08-25 | 3 | -5/+5 | ||
| * | | | Merge branch 'insp4' into master. | 2024-08-23 | 1 | -5/+34 | ||
| |\| | | ||||||
| | * | | Close loggers and notify opers if they throw any exceptions. | 2024-08-23 | 1 | -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. | 2024-08-23 | 1 | -12/+56 | ||
| | * | | Make it clear which is the current client fingerprint. | 2024-08-19 | 1 | -1/+6 | ||
| * | | | Use C++20 <format> instead of fmtlib when available. | 2024-08-22 | 14 | -48/+50 | ||
| * | | | Merge branch 'insp4' into master. | 2024-08-18 | 1 | -1/+2 | ||
| |\| | | ||||||
| | * | | Add Numeric::push_fmt(...) as shorthand for push(INSP_FORMAT(...)). | 2024-08-18 | 2 | -2/+2 | ||
| | * | | Add a formatting overload to {Membership,User}::Write(Remote)Notice. | 2024-08-18 | 14 | -35/+35 | ||
| | * | | Update my nick in the INFO output. | 2024-08-12 | 1 | -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. | 2024-08-11 | 1 | -1/+1 | ||
| | * | | Add a helper template for checking MySQL errors. | 2024-08-06 | 1 | -3/+12 | ||
| * | | | Merge branch 'insp4' into master. | 2024-08-04 | 3 | -3/+3 | ||
| |\| | | ||||||
| | * | | Fix the pgsql module showing duplicate packages on Ubuntu.•••This is covered by the debian-like constraint above. | 2024-08-04 | 1 | -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. | 2024-08-04 | 1 | -1/+2 | ||
| | * | | Fix bursting server metadata. | 2024-08-03 | 1 | -2/+2 | ||
| | * | | Release v4.2.0. v4.2.0 | 2024-08-03 | 1 | -1/+1 | ||
| | * | | Update copyright headers. | 2024-08-03 | 10 | -10/+9 | ||
| | * | | Only allow the IRCv3 WebSocket subprotocols on client connections. | 2024-07-31 | 1 | -2/+2 | ||
| * | | | Merge branch 'insp4' into master. | 2024-07-29 | 3 | -27/+43 | ||
| |\| | | ||||||
| | * | | Fix some minor bugs in EscapeTag/UnescapeTag. | 2024-07-29 | 1 | -25/+24 | ||
| | * | | Avoid passing malformed socket addresses to sa2cidr. | 2024-07-29 | 1 | -2/+10 | ||
| | * | | Log when a user has an unknown socket type in User::GetCIDRMask. | 2024-07-29 | 1 | -0/+9 | ||
| | * | | Move 1205 UID compatibility code to PreProcessOldProtocolMessage.•••This should make it more reliable. | 2024-07-24 | 3 | -8/+16 | ||
| * | | | Merge branch 'insp4' into master. | 2024-07-24 | 2 | -2/+16 | ||
| |\| | | ||||||
| | * | | Synchronise extensibles in Sync even if they have no value. | 2024-07-24 | 1 | -2/+1 | ||
| | * | | Add ExtensionItem::OnSync which is called when an ext is synchronised. | 2024-07-24 | 3 | -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. | 2024-07-24 | 1 | -1/+1 | ||
| | * | | Update all usages of ProtocolServer to use Server. | 2024-07-24 | 7 | -51/+13 | ||
| | * | | Add SendMetadata methods to Server. | 2024-07-24 | 3 | -0/+26 | ||
| * | | | Remove support for the v3 server protocol. | 2024-07-23 | 1 | -3/+2 | ||
| * | | | Merge branch 'insp4' into master. | 2024-07-22 | 4 | -11/+20 | ||
| |\| | | ||||||
| | * | | Fix shadowing messages in pgsql and regex_pcre2. | 2024-07-22 | 2 | -8/+8 | ||
| | * | | Show the right config option when not forking. | 2024-07-22 | 1 | -1/+2 | ||
| | * | | Revert module flags to the way they worked in v3. | 2024-07-22 | 1 | -1/+1 | ||
