summaryrefslogtreecommitdiff
path: root/modules/protocol
AgeCommit message (Collapse)Author
2024-11-23Fix the signon time of services pseudoclients on InspIRCd.Sadie Powell
2024-11-11Merge branch '2.0' into 2.1.Sadie Powell
2024-11-11Fix using User::Account where User::IsIdentified should be used.Sadie Powell
The former causes a dereference which cause a database update. This is not good for performance with db_sql_live on bigger networks.
2024-10-25Fix parsing mode changes from users on UnrealIRCd.Sadie Powell
2024-10-17Updated the supported versions in the README.Sadie Powell
2024-10-16Add support for name-only extbans on InspIRCd.Sadie Powell
2024-10-04Fix matching stacked extbans.Sadie Powell
2024-10-04Remove some unnecessary debug logging.Sadie Powell
2024-10-04Fix validating named extbans on UnrealIRCd.Sadie Powell
2024-10-04Implement NEXTBANS support on UnrealIRCd.Sadie Powell
Closes #431.
2024-10-04Fix extracting the mode parameters from MODE on UnrealIRCd.Sadie Powell
2024-10-04Fix matching extended bans in services.Sadie Powell
Extended bans are stored without their prefix. Therefore, we should not try to strip their prefix before matching. Closes #288. Co-authored-by: k4be <k4be@pirc.pl>
2024-10-04Fix parsing extbans on InspIRCd v4.Sadie Powell
2024-10-04Respect EXTBANFORMAT on InspIRCd v4.Sadie Powell
2024-10-02Change User::SetModesInternal to take a split mode change.Sadie Powell
2024-10-02Change Channel::SetModesInternal to take a split mode change.Sadie Powell
2024-09-26Respect nonicknameownership on InspIRCd v4.Sadie Powell
2024-09-26Allow sending an oper account on InspIRCd.Sadie Powell
2024-09-24Bump minimum UnrealIRCd version to 6.0.Sadie Powell
2024-08-30Fix parsing named extbans on InspIRCd.Sadie Powell
2024-08-09Fix parsing SVSMODE and SVS2MODE messages on UnrealIRCd.Sadie Powell
At some point UnrealIRCd made an undocumented change to the protocol where the last parameter on a server-source message would not be a timestamp. This behaviour is preserved for MODE.
2024-07-20Fix the type of the InspIRCd IJOIN chants when converting.Sadie Powell
2024-07-19Merge branch '2.0' into 2.1.Sadie Powell
2024-07-19Send the vhost/vident before the account name on InspIRCd.Sadie Powell
This fixes IRCd-side account cloaks causing CHGHOST spam.
2024-07-14Merge branch '2.0' into 2.1.Sadie Powell
2024-07-14Fix joining channels with keys on InspIRCd v3.Sadie Powell
2024-07-14Fix the name of the key parameter in SendSVSJoin.Sadie Powell
2024-06-24Add support for sending tag messages.Sadie Powell
2024-06-24Remove the formatting overloads of SendNotice/SendPrivmsg.Sadie Powell
2024-05-22Fix setting the history mode on UnrealIRCd.Sadie Powell
Closes #406.
2024-05-18Fix parsing the flood mode on UnrealIRCd.Sadie Powell
2024-05-10Always use server-side topic and mode locks where available.Sadie Powell
2024-05-09Remove CanSVSLogout and implement logout support on Plexus.Sadie Powell
2024-05-01Fix parsing backup client certificate fingerprints on InspIRCd.Sadie Powell
2024-05-01Simplify InspIRCd user metadata handler slightly.Sadie Powell
2024-05-01Update the inspircd module for recent 1206 protocol changes.Sadie Powell
2024-04-15Only enable os_noop on IRCDs that actually have a SendSVSNOOP impl.Sadie Powell
2024-04-15Implement support for BIGLINES on UnrealIRCd.Sadie Powell
2024-04-15Bump Bahamut support to require 2.0 or newer.Sadie Powell
2024-04-04Fix extracting timestamps from UnrealIRCd MODE messages.Sadie Powell
Oversight from commit 04e1a4f5c8c4172ca36dd79dfd0731f4aba873a5.
2024-03-15Use consistent casing when referring to vhosts and vidents.Sadie Powell
2024-03-12Add command handlers for encap commands on InspIRCd.Sadie Powell
2024-03-12Implement support for challenge authentication on InspIRCd.Sadie Powell
2024-03-12Allow protocol modules to declare that they have no line/mode limit.Sadie Powell
InspIRCd allows us to send infinite length lines and mode changes and will restack before sending to users.
2024-03-12Simplify limit extraction code.Sadie Powell
2024-03-12Merge branch '2.0' into 2.1.Sadie Powell
2024-03-12Fix sending SVSTOPIC when topiclock is loaded on InspIRCd.Sadie Powell
2024-03-12Refactor sending vhosts in the InspIRCd protocol module.Sadie Powell
2024-03-12Add a protocol module function for extracting timestamps.Sadie Powell
2024-03-12Add ProtocolException and use it to send fatal errors.Sadie Powell