1
0
mirror of https://github.com/anope/anope.git synced 2026-06-30 18:26:38 +02:00

Move SASL protocol messages to the SASL header.

This commit is contained in:
Sadie Powell
2025-03-03 21:45:59 +00:00
parent 4526fbed96
commit 5828cdba45
7 changed files with 54 additions and 13 deletions
+5 -1
View File
@@ -101,6 +101,7 @@ namespace
class InspIRCdProto final
: public IRCDProto
, public SASL::ProtocolInterface
{
private:
static Anope::string GetAccountNicks(NickAlias* na)
@@ -155,7 +156,10 @@ private:
public:
PrimitiveExtensibleItem<ListLimits> maxlist;
InspIRCdProto(Module *creator) : IRCDProto(creator, "InspIRCd 3+"), maxlist(creator, "maxlist")
InspIRCdProto(Module *creator)
: IRCDProto(creator, "InspIRCd 3+")
, SASL::ProtocolInterface(creator)
, maxlist(creator, "maxlist")
{
DefaultPseudoclientModes = "+oI";
CanSVSNick = true;