aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_ircv3_chghost.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright headers.Gravatar InspIRCd Robot2024-06-071-1/+1
|
* Retain the "real" username properly like we do for hostnames.Gravatar Sadie Powell2023-06-291-6/+6
| | | | | | | | | | | | | | 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.
* Merge branch 'insp3' into master.Gravatar Sadie Powell2023-01-011-1/+2
|\
| * Update copyright headers.Gravatar InspIRCd Robot2022-12-301-1/+2
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2022-11-161-1/+5
|\|
| * Add support for the IRCv3 extended-monitor specification.Gravatar delthas2022-11-021-1/+5
| | | | | | Co-authored-by: Sadie Powell <sadie@witchery.services>
* | Rename session registration to connection to avoid a semantic conflict.Gravatar Sadie Powell2022-10-291-1/+1
| | | | | | | | | | | | We previously referred to both session registration and user registration as "registration" which is confusing for users who aren't familiar with how IRC works.
* | Abolish the infernal space before accessibility keywords.Gravatar Sadie Powell2022-01-251-1/+1
| |
* | Mark all module classes as final.Gravatar Sadie Powell2021-10-011-1/+2
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-03-051-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2021-03-051-1/+1
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-04-111-1/+1
|\|
| * Update the module descriptions using mkversion.Gravatar Sadie Powell2020-04-101-1/+1
| |
* | Improve storage of module description, flags, and link data.Gravatar Sadie Powell2020-04-111-6/+2
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-171-1/+2
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-111-1/+2
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-08-091-0/+3
|\|
| * Only send ACCOUNT and CHGHOST to clients that have sent NICK/USER.Gravatar Peter Powell2019-08-011-0/+3
| | | | | | | | Closes #1657.
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2019-03-301-1/+1
|\|
| * ircv3_chghost: also send the CHGHOST message to the modified user.Gravatar Peter Powell2019-02-161-1/+1
| |
* | Replace the override macro with the override keyword.Gravatar Sadie Powell2019-01-251-3/+3
|/
* Replace all references to IRCv3.2 with IRCv3.Gravatar Peter Powell2018-08-131-1/+1
| | | | IRCv3 no longer does versioned releases.
* Implement IRCv3 message tag support.Gravatar Peter Powell2018-08-131-3/+7
| | | | Co-authored-by: Attila Molnar <attilamolnar@hush.com>
* Hide User#host and User#dhost and use accessors to modify them.Gravatar Peter Powell2017-10-281-1/+1
| | | | | This removes the need to invalidate the cache after changing a user's hostname.
* Add m_ircv3_chghost which implements the IRCv3.2 chghost extensionGravatar Attila Molnar2015-12-051-0/+57