aboutsummaryrefslogtreecommitdiffstats
path: root/include/modules/whois.h
Commit message (Collapse)AuthorAgeFilesLines
* Update copyright headers.Gravatar InspIRCd Robot2024-06-071-1/+2
|
* Make module classes specify their priority manually.Gravatar Sadie Powell2023-02-271-4/+4
|
* Use `T&&` instead of `T` or `const T&`.Gravatar Sadie Powell2022-11-291-1/+1
|
* Remove duplicate includes from module headers.Gravatar Sadie Powell2022-01-251-2/+0
|
* Abolish the infernal space before accessibility keywords.Gravatar Sadie Powell2022-01-251-4/+4
|
* Add the final keyword to all remaining classes that can have it.Gravatar Sadie Powell2021-12-201-2/+4
|
* Send RPL_WHOISACTUALLY instead of RPL_WHOISHOST (#1923)Gravatar Val Lorentz2021-08-151-1/+3
| | | | | | | | | | | | | | Unlike RPL_WHOISHOST, it contains the user@host and ip as separate parameters, instead of having them in the free-text parameter. To my knowledge, there are three different syntaxes for RPL_WHOISACTUALLY: 1. "<client> <nick> :is actually ..." (bahamut) 2. "<client> <nick> <host> :Is actually using host" (charybdis family) 3. "<client> <nick> <username>@<host> <ip> :Is actually using host" (ircu2, ergo, hybrid, ...) I chose the third one because it contains the most info, and is the most common one.
* Merge branch 'insp3' into master.Gravatar Sadie Powell2021-07-171-3/+18
|\
| * Deduplicate all whois numerics to the whois module header.Gravatar Sadie Powell2021-07-051-3/+18
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-07-041-3/+3
|\|
| * Fix some "targ" usages which were missed in the earlier commit.Gravatar Sadie Powell2021-07-031-3/+3
| |
* | Fix WHOIS numerics not including the source of the message.Gravatar Sadie Powell2021-07-011-0/+1
| | | | | | | | Regression introduced in commit 0fab6438.
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2021-02-281-0/+17
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2021-02-261-0/+1
| |
| * Implement support for multi-prefix on WHOIS.Gravatar Sadie Powell2021-02-251-0/+16
| |
* | Merge branch 'insp3' into master.Gravatar Sadie Powell2020-01-171-1/+1
|\|
| * Update copyright headers.Gravatar InspIRCd Robot2020-01-111-1/+1
| |
* | Convert repetitive functions to use C++11 variadic templates.Gravatar Sadie Powell2019-01-251-37/+3
|/
* Convert WhoisContext::SendLine() calls to pass the parameters of the numeric ↵Gravatar Attila Molnar2016-02-251-12/+42
| | | | as method parameters
* Move OnWhois* events to core_whois, add Whois::ContextGravatar Attila Molnar2015-04-281-0/+116
Remove InspIRCd::SendWhoisLine()