| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Update copyright headers. | 2024-06-07 | 1 | -3/+2 | |
| | | |||||
| * | Retain the "real" username properly like we do for hostnames. | 2023-06-29 | 1 | -1/+1 | |
| | | | | | | | | | | | | | | | 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. | ||||
| * | Refactor the caching methods in User and rename to make more sense. | 2023-01-24 | 1 | -1/+1 | |
| | | |||||
| * | Clean up the typedefs for OnBuildNeighborList. | 2022-10-29 | 1 | -2/+2 | |
| | | |||||
| * | Switch from NULL to nullptr. | 2022-07-22 | 1 | -1/+1 | |
| | | |||||
| * | Abolish the infernal space before accessibility keywords. | 2022-01-25 | 1 | -3/+3 | |
| | | |||||
| * | Always catch exceptions as a constant reference. | 2022-01-09 | 1 | -1/+1 | |
| | | |||||
| * | Merge branch 'insp3' into master. | 2022-01-03 | 1 | -1/+1 | |
| |\ | |||||
| | * | Update copyright headers. | 2021-12-30 | 1 | -1/+1 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2021-12-14 | 1 | -1/+1 | |
| |\| | |||||
| | * | If a user has a unique username then include it in bans. | 2021-12-14 | 1 | -1/+1 | |
| | | | |||||
| * | | Mark all command classes as final. | 2021-10-01 | 1 | -1/+2 | |
| | | | |||||
| * | | Mark all module classes as final. | 2021-10-01 | 1 | -1/+2 | |
| | | | |||||
| * | | Add a detach method that takes an Implementation array. | 2021-08-17 | 1 | -1/+2 | |
| | | | |||||
| * | | Move channel logic from InspIRCd to the new ChannelManager class. | 2021-05-08 | 1 | -1/+1 | |
| | | | |||||
| * | | Migrate collections from insert to emplace. | 2021-04-18 | 1 | -1/+1 | |
| | | | |||||
| * | | Switch simple iterator loops to use range-based for loops. | 2021-04-07 | 1 | -6/+3 | |
| | | | |||||
| * | | Replace all internal references to uline with services. | 2021-01-30 | 1 | -1/+1 | |
| | | | |||||
| * | | Convert CmdResult to an 8-bit strongly typed enum. | 2020-10-27 | 1 | -4/+4 | |
| | | | |||||
| * | | Replace the flags_required field with an enum. | 2020-04-14 | 1 | -1/+1 | |
| | | | |||||
| * | | Alow modules to specify multiple syntax lines. | 2020-04-14 | 1 | -1/+1 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2020-04-11 | 1 | -1/+1 | |
| |\| | |||||
| | * | Update the module descriptions using mkversion. | 2020-04-10 | 1 | -1/+1 | |
| | | | |||||
| * | | Improve storage of module description, flags, and link data. | 2020-04-11 | 1 | -6/+3 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2020-01-17 | 1 | -1/+3 | |
| |\| | |||||
| | * | Update copyright headers. | 2020-01-11 | 1 | -1/+3 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2019-05-15 | 1 | -1/+1 | |
| |\| | |||||
| | * | Textual improvements and fixes such as typos, casing, etc. (#1612) | 2019-04-28 | 1 | -1/+1 | |
| | | | |||||
| * | | Merge branch 'insp3' into master. | 2019-03-30 | 1 | -1/+1 | |
| |\| | |||||
| | * | Various text improvements: consistency, syntax, help and doc updates/fixes. | 2019-02-18 | 1 | -1/+1 | |
| | | | |||||
| * | | UserManager: remove fakederef. | 2019-02-07 | 1 | -1/+1 | |
| | | | |||||
| * | | SnomaskManager: remove fakederef. | 2019-02-07 | 1 | -1/+1 | |
| | | | |||||
| * | | ModuleManager: remove fakederef. | 2019-02-07 | 1 | -3/+3 | |
| | | | |||||
| * | | Replace the override macro with the override keyword. | 2019-01-25 | 1 | -5/+5 | |
| |/ | |||||
| * | Improve X-line text consistency. | 2019-01-09 | 1 | -1/+1 | |
| | | | | | | | | | | | - Change any "-Line", ":Line", or "*line" to "-line" throughout the X-line code, comments, and documentation. - Add periods to the end of some notices. - Correct a typo in the Q-line code comments. - Update the filter module documentation (shun addition). Co-authored-by: Robby <robby@chatbelgie.be> | ||||
| * | Use CommandBase::Params instead of std::vector<std::string>. | 2018-07-26 | 1 | -2/+2 | |
| | | | | | | This is presently a typedef but will soon be replaced with a class that encapsulates both tags and parameters. | ||||
| * | Add the override keyword in places that it is missing. | 2017-11-21 | 1 | -1/+1 | |
| | | | | | GCCs warnings for this are much better than Clangs. | ||||
| * | Hide User#host and User#dhost and use accessors to modify them. | 2017-10-28 | 1 | -1/+1 | |
| | | | | | | This removes the need to invalidate the cache after changing a user's hostname. | ||||
| * | Add CXX11_OVERRIDE to overridden members that lack it. | 2017-07-12 | 1 | -1/+1 | |
| | | | | | | This fixes a ton of warnings when building on compilers that default to C++11 or newer. | ||||
| * | Fix Windows build and most MSVC warnings | 2016-09-02 | 1 | -1/+1 | |
| | | |||||
| * | Remove typedef UserMembIter, use Channel::MemberMap::iterator instead | 2014-07-14 | 1 | -2/+2 | |
| | | | | | Remove the now unused UserMembList typedef too | ||||
| * | Remove typedef UserMembCIter, use Channel::MemberMap::const_iterator instead | 2014-07-14 | 1 | -2/+2 | |
| | | |||||
| * | Rename UserMembList to Channel::MemberMap, switch all code to use it | 2014-07-14 | 1 | -3/+3 | |
| | | |||||
| * | Change return type of Channel::GetUsers() to reference from pointer as it is ↵ | 2014-07-14 | 1 | -4/+4 | |
| | | | | | never NULL | ||||
| * | Use the iterator version of Channel::KickUser() in a few places | 2014-06-10 | 1 | -3/+4 | |
| | | |||||
| * | Add m_clearchan which removes users from a channel without sending n*(n+1)/2 ↵ | 2014-01-26 | 1 | -0/+217 | |
| QUIT messages | |||||
