1
0
mirror of https://github.com/anope/anope.git synced 2026-07-02 10:26:37 +02:00

Add the SSL ExtensibleItem for Users.

Copied this directly from inspircd12.cpp, which
inspircd20.cpp inherited from.
This commit is contained in:
Matt Schatz
2019-11-12 05:43:31 -07:00
committed by P. Powell
parent 91dde90ad2
commit f34ba4b1f0
+2 -1
View File
@@ -1786,6 +1786,7 @@ struct IRCDMessageUID : IRCDMessage
class ProtoInspIRCd3 : public Module
{
InspIRCd3Proto ircd_proto;
ExtensibleItem<bool> ssl;
/* Core message handlers */
Message::Error message_error;
@@ -1832,7 +1833,7 @@ class ProtoInspIRCd3 : public Module
public:
ProtoInspIRCd3(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, PROTOCOL | VENDOR),
ircd_proto(this),
ircd_proto(this), ssl(this, "ssl"),
message_error(this), message_invite(this), message_kill(this), message_motd(this), message_notice(this),
message_part(this), message_privmsg(this), message_quit(this), message_stats(this),
message_away(this), message_capab(this), message_encap(this), message_endburst(this), message_fhost(this),