aboutsummaryrefslogtreecommitdiff
path: root/protocols/inspircd4.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* hax@andrewyu.org -> hax@runxiyu.orgHEADmasterTest_User5 days1-1/+1
|
* This was missing, though not actually brokenTest_User6 days1-0/+2
|
* Convert to non-UB haxtable stuffTest_User2024-09-051-162/+226
|
* Separate haxstring/table from hereTest_User2024-09-041-2/+3
|
* Fix a typoTest_User2024-08-311-1/+1
|
* Fix RSQUIT behaviorTest_User2024-08-311-2/+4
|
* Fix faulty inspircd3/4 SAVE usageTest_User2024-08-171-1/+1
|
* Add membership id handling for incoming inspircd 3/4 KICKsTest_User2024-08-071-6/+33
|
* Fix some member ID-related bugsTest_User2024-07-251-8/+46
|
* InspIRCd v4: Fix erroneous protocol_specific[INSPIRCD3_PROTOCOL]Runxi Yu2024-07-251-2/+2
| | | | | | | | | Commit 86344230a6 fixed some memory leaks in the InspIRCd v3 protocol, and the changes were also ported to the InspIRCd v4 protocol, which erroneously introduced users[n]->protocol_specific[INSPIRCD3_PROTOCOL] into inspircd4.c. Although there are no functional differences, this causes the build to fail when users only enable INSPIRCD4_PROTOCOL in their build options.
* Fix some issues in inspircd3 protocol support, and the parts of inspircd4 ↵Test_User2024-07-241-5/+17
| | | | protocol copied from it
* InspIRCd v4: Fix loop condition in FJOIN memid resetRunxi Yu2024-07-251-1/+1
| | | | | | | | | | | | There was a typo in the InspIRCd v3 code, in the FJOIN handler: The loop condition said n > 0, while n is never changed in the loop. It turns out the the loop condition should have been x > 0. This was fixed for InspIRCd v3 in commit 85716714, but it was not ported to the InspIRCd v4 protocol support code because the v4 code was copied from v3 a while ago. This commit fixes it.
* Fix some bugsTest_User2024-07-241-2/+2
|
* Fix cross-protocol netsplit propagationsTest_User2024-07-241-4/+21
|
* InspIRCd v4: Don't send or expect 0 hopcount in initial SERVERRunxi Yu2024-07-241-7/+7
| | | | | | | | The SERVER message for directly-linked servers no longer contains the hopcount field. - :36D SERVER irc2.example.com password 0 36D :Example Server + :36D SERVER irc2.example.com password 36D :Example Server
* InspIRCd v4: Support real_username (well, faked)Runxi Yu2024-07-241-10/+16
| | | | | | | | In the 1206 protocol, the UID message now has an extra field for the real username of the user which is being introduced. We don't track this and this is unlikely to be useful for other protocols, so we just ignore it when receiving UID from an InspIRCd 1206 server, and we send the ident instead of the real_username when sending to a 1206 server.
* Initial InspIRCd v4/1206 protocol supportRunxi Yu2024-07-241-0/+2124