| Commit message (Expand) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Merge branch 'insp3' into master. | 2021-12-14 | 1 | -0/+6 | |
| |\ | |||||
| | * | If a user has a unique username then include it in bans. | 2021-12-14 | 1 | -0/+3 | |
| | * | Sync uniqueusername from the connect class to the user.•••This is a massive hack for now but should be made to sync properly in v4 when we have extensibles that don't suck. | 2021-12-14 | 1 | -0/+3 | |
| * | | Replace some references to ssl with tls. | 2021-12-08 | 2 | -10/+10 | |
| * | | Move configuration of connect classes to the ConnectClass class. | 2021-11-24 | 1 | -0/+3 | |
| * | | Refactor the ClassTypes enum and move into ConnectClass. | 2021-11-24 | 1 | -15/+17 | |
| * | | Add sensible defaults and limits to ConnectClass. | 2021-11-24 | 1 | -18/+18 | |
| * | | Fix ConnectClass inheriting from refcountbase.•••This snuck back in during the v3 merge. Closes #1944. | 2021-11-24 | 1 | -1/+1 | |
| * | | Merge branch 'insp3' into master. | 2021-11-24 | 2 | -67/+51 | |
| |\| | |||||
| | * | Add the <connect:uniqueusername> option. | 2021-11-23 | 1 | -0/+3 | |
| | * | Document ConnectClass and reorder it to avoid unnecessary padding. | 2021-11-16 | 2 | -68/+55 | |
| * | | Merge branch 'insp3' into master. | 2021-11-10 | 1 | -1/+1 | |
| |\| | |||||
| | * | Fix TokenList not initializing permissive to false on creation. | 2021-11-10 | 1 | -0/+5 | |
| * | | Remove unused time_t field from the timer system.•••This is equivalent to calling InspIRCd::Now() and is only actually used in one place in modules. | 2021-11-05 | 3 | -6/+4 | |
| * | | Merge branch 'insp3' into master. | 2021-11-05 | 2 | -2/+5 | |
| |\| | |||||
| | * | Add Server::GetPublicName(), fix not respecting <security:hideserver>. | 2021-10-25 | 2 | -2/+5 | |
| * | | Merge branch 'insp3' into master. | 2021-09-30 | 1 | -34/+1 | |
| |\| | |||||
| | * | Move the ParseStack constructor out of the header. | 2021-09-30 | 1 | -32/+1 | |
| * | | Add the regex_pcre2 module. | 2021-09-26 | 1 | -1/+1 | |
| * | | Fix and optimise sending standard replies with variable parameters. | 2021-09-23 | 1 | -29/+10 | |
| * | | Merge branch 'insp3' into master. | 2021-09-23 | 2 | -0/+22 | |
| |\| | |||||
| | * | Use CXX11_OVERRIDE instead of the override keyword. | 2021-09-22 | 1 | -1/+1 | |
| | * | Add an API for checking if I/O hooks are ready or not. | 2021-09-22 | 2 | -0/+22 | |
| * | | Merge branch 'insp3' into master. | 2021-09-16 | 1 | -1/+1 | |
| |\| | |||||
| | * | Use the network name as the description when hideserver is enabled. | 2021-09-04 | 1 | -1/+1 | |
| * | | Fix some places where U-line -> service was missed. | 2021-08-29 | 1 | -1/+1 | |
| * | | Merge branch 'insp3' into master. | 2021-08-28 | 3 | -3/+2 | |
| |\| | |||||
| | * | Release v3.11.0. v3.11.0 | 2021-08-27 | 1 | -1/+1 | |
| | * | Update copyright headers. | 2021-08-27 | 3 | -3/+2 | |
| * | | Remove a bunch of unnecessary whitespace. | 2021-08-17 | 6 | -7/+0 | |
| * | | Add a detach method that takes an Implementation array. | 2021-08-17 | 1 | -0/+9 | |
| * | | Reorder some functions in the ModuleManager class. | 2021-08-17 | 1 | -12/+12 | |
| * | | Send RPL_WHOISACTUALLY instead of RPL_WHOISHOST (#1923)•••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. | 2021-08-15 | 1 | -1/+3 | |
| * | | Merge branch 'insp3' into master. | 2021-08-01 | 2 | -2/+6 | |
| |\| | |||||
| | * | Allow retrieving the already sent id from WriteNeighborsWithCap. | 2021-07-24 | 1 | -1/+5 | |
| | * | Change ForEachNeighbour to return the already sent id. | 2021-07-24 | 1 | -3/+4 | |
| * | | Clean up the routing code in the ctables header. | 2021-07-24 | 1 | -43/+58 | |
| * | | Merge branch 'insp3' into master. | 2021-07-17 | 2 | -6/+18 | |
| |\| | |||||
| | * | Deduplicate all whois numerics to the whois module header. | 2021-07-05 | 2 | -6/+18 | |
| * | | Allow toggling a capability from a Cap::Reference. | 2021-07-16 | 1 | -0/+11 | |
| * | | Merge branch 'insp3' into master. | 2021-07-04 | 2 | -6/+10 | |
| |\| | |||||
| | * | Fix some "targ" usages which were missed in the earlier commit. | 2021-07-03 | 2 | -6/+10 | |
| * | | Move ModeParser::BuildPrefixes to core_mode.•••Now we've dropped support for the 1202 protocol we don't need this in the core. | 2021-07-03 | 1 | -5/+0 | |
| * | | Move ModeParser::GiveModeList to core_mode.•••Now we've dropped support for the 1202 protocol we don't need this in the core. | 2021-07-03 | 1 | -8/+0 | |
| * | | Fix module events not being fired correctly.•••Regression introduced in commit ba3dd9ce. Closes #1912. | 2021-07-01 | 1 | -2/+2 | |
| * | | Fix WHOIS numerics not including the source of the message.•••Regression introduced in commit 0fab6438. | 2021-07-01 | 1 | -0/+1 | |
| * | | Merge branch 'insp3' into master. | 2021-07-01 | 9 | -22/+22 | |
| |\| | |||||
| | * | Fix various spelling issues (#1883).•••Signed-off-by: Josh Soref <jsoref@users.noreply.github.com> | 2021-06-21 | 9 | -22/+22 | |
| * | | Merge branch 'insp3' into master. | 2021-06-18 | 2 | -1/+15 | |
| |\| | |||||
| | * | Fix xline matching on WebIRC connections. | 2021-06-17 | 1 | -2/+9 | |
