diff options
author | Matt Schatz <genius3000@g3k.solutions> | 2019-11-12 05:43:31 -0700 |
---|---|---|
committer | P. Powell <petpow@saberuk.com> | 2019-11-12 13:06:32 +0000 |
commit | f34ba4b1f0b69b1b080c22a3fd62b579d756c855 (patch) | |
tree | 5676a9a9cd8ba6ab622ea6fa9b8db78d0000a150 /modules/protocol/inspircd3.cpp | |
parent | 91dde90ad2fd6ed21df5f02f97a9bbce3ac31b39 (diff) |
Add the SSL ExtensibleItem for Users.
Copied this directly from inspircd12.cpp, which
inspircd20.cpp inherited from.
Diffstat (limited to 'modules/protocol/inspircd3.cpp')
-rw-r--r-- | modules/protocol/inspircd3.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/modules/protocol/inspircd3.cpp b/modules/protocol/inspircd3.cpp index fdae22f53..379b034d7 100644 --- a/modules/protocol/inspircd3.cpp +++ b/modules/protocol/inspircd3.cpp @@ -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), |