| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | 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. | 2023-06-29 | 10 | -37/+54 | |
| * | Make internal bug messages more consistent. | 2023-06-12 | 1 | -1/+1 | |
| * | Fix commands overflowing the message size in `/STATS Oo`. | 2023-06-04 | 1 | -2/+2 | |
| * | Fix exposing oper hosts in `/STATS P`. | 2023-06-04 | 1 | -1/+1 | |
| * | Fix calling c_str() for parameters that can take a std::string. | 2023-05-31 | 1 | -1/+1 | |
| * | Convert DelLine from const char* to const std::string&. | 2023-05-30 | 5 | -5/+5 | |
| * | Merge branch 'insp3' into master. | 2023-05-30 | 1 | -1/+1 | |
| |\ | |||||
| | * | If no DNS bindport is specified then randomise it on rehash. | 2023-05-29 | 1 | -1/+1 | |
| * | | Rename duration to timeutils and relocate InspIRCd::TimeString. | 2023-05-10 | 12 | -14/+18 | |
| * | | Merge branch 'insp3' into master. | 2023-04-28 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update copyright headers. | 2023-04-28 | 1 | -1/+1 | |
| * | | Send ERR_NOPERMFORHOST when a user hits a deny class. | 2023-03-24 | 1 | -1/+4 | |
| * | | Send ERR_PASSWDMISMATCH when the user specifies the wrong password.•••Closes #1099. | 2023-03-24 | 1 | -0/+4 | |
| * | | Allow modules to provide an error for when a class doesn't match. | 2023-03-24 | 1 | -1/+1 | |
| * | | Remove GetSID, rename sid to ServerId. | 2023-02-28 | 1 | -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. | 2023-02-28 | 1 | -1/+1 | |
| * | | Sort opers alphabetically in `/STATS P`. | 2023-02-27 | 1 | -0/+5 | |
| * | | Make module classes specify their priority manually. | 2023-02-27 | 1 | -1/+1 | |
| * | | Use the stats row count instead of counting opers manually. | 2023-02-27 | 1 | -3/+2 | |
| * | | Expose the removed away message in OnUserBack. | 2023-02-03 | 1 | -1/+2 | |
| * | | Allow bouncers to introduce a user as away. | 2023-02-03 | 1 | -0/+1 | |
| * | | Move CheckExemption::Call to CheckExemption::EventProvider.•••Now FirstResult not a macro there's no need for this to be a free function. | 2023-01-25 | 1 | -1/+1 | |
| * | | Replace getInt/getUInt/getFloat with type safe templated functions. | 2023-01-25 | 4 | -6/+6 | |
| * | | Refactor the caching methods in User and rename to make more sense. | 2023-01-24 | 16 | -35/+35 | |
| * | | Convert log calls to use fmtlib format strings | 2023-01-24 | 11 | -42/+42 | |
| * | | Convert WriteToSnoMask/WriteGlobalSno to use fmtlib format strings. | 2023-01-23 | 17 | -59/+59 | |
| * | | Replace VAFORMAT/InspIRCd::Format/... with fmt::sprintf. | 2023-01-23 | 2 | -6/+6 | |
| * | | Replace InspIRCd::Format with fmt::format. | 2023-01-23 | 19 | -71/+67 | |
| * | | Move duration functions to their own header. | 2023-01-23 | 9 | -14/+18 | |
| * | | Move NotifyRawIO to the Log namespace. | 2023-01-22 | 1 | -1/+1 | |
| * | | Replace ModeAction with bool.•••This enum is functionally the same as bool but with weird semantics. | 2023-01-22 | 6 | -24/+24 | |
| * | | Convert various enums to strongly typed scoped enums. | 2023-01-22 | 3 | -6/+6 | |
| * | | Replace SocketEngine::SetReuse with SocketEngine::SetOption. | 2023-01-17 | 1 | -1/+1 | |
| * | | Add a helper method for determining if a sockaddrs is an IP endpoint. | 2023-01-17 | 1 | -1/+1 | |
| * | | Fix some testing changes that snuck in to the previous commit. | 2023-01-16 | 1 | -1/+1 | |
| * | | Add support for SCTP listeners. | 2023-01-16 | 1 | -1/+15 | |
| * | | Move enforcing channel join limits to core_channel. | 2023-01-16 | 1 | -1/+24 | |
| * | | Use insp::reverse_range in core_mode. | 2023-01-14 | 1 | -1/+1 | |
| * | | Remove some more unnecessary things from the global headers. | 2023-01-14 | 1 | -0/+1 | |
| * | | Merge branch 'insp3' into master. | 2023-01-13 | 1 | -2/+2 | |
| |\| | |||||
| | * | Fix core_dns rejecting simple hostnames. | 2023-01-13 | 1 | -1/+1 | |
| * | | Make some functions that don't use `this` static. | 2023-01-11 | 2 | -2/+2 | |
| * | | Fix calling various static functions through a type instance. | 2023-01-11 | 4 | -4/+4 | |
| * | | Qualify auto correctly in all cases. | 2023-01-10 | 25 | -38/+38 | |
| * | | Fix using std::move when not appropriate. | 2023-01-10 | 1 | -1/+1 | |
| * | | Avoid copying shared_ptr<ConfigTag> when not necessary. | 2023-01-10 | 10 | -14/+14 | |
| * | | Deduplicate sending the raw I/O logging warning. | 2023-01-09 | 1 | -4/+1 | |
| * | | Rework how users are assigned to connect classes.•••- Move core connect class checks and <performance:clonesonconnect> to the core_user module. - Add pre-change and post-change events for when a connect class changes. - Split explicit class changing out into its own method. - Remove the need to almost always call CheckClass after SetClass. - Add use counting to the connect class instead of relying on the shared_ptr use count. | 2023-01-08 | 4 | -6/+109 | |
| * | | Add some overloads of Find{Nick,UUID,} for local/remote users. | 2023-01-07 | 1 | -3/+3 | |
| * | | Add a helper class for creating a reference to a DNS manager. | 2023-01-05 | 1 | -2/+2 | |
