diff options
author | Attila Molnar <attilamolnar@hush.com> | 2016-02-19 21:03:57 +0100 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2016-02-19 21:03:57 +0100 |
commit | 860b5f5920107e933cf9467941d8b193e6d193a4 (patch) | |
tree | 24d1e9d4273c7f2af7a4938924382121ec9dc6b5 /src/modules | |
parent | 2e4b6efa9d8d0283a646f5d4f5778a149043fb8c (diff) | |
parent | 384056dd0ec72a533de7d9eca0ce25f493d1e152 (diff) |
Merge pull request #1135 from SaberUK/master+starttls
Remove the STARTTLS token from ISUPPORT.
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_starttls.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/modules/m_starttls.cpp b/src/modules/m_starttls.cpp index a47480728..054f9c334 100644 --- a/src/modules/m_starttls.cpp +++ b/src/modules/m_starttls.cpp @@ -102,11 +102,6 @@ class ModuleStartTLS : public Module ssl.SetProvider("ssl/" + newprovider); } - void On005Numeric(std::map<std::string, std::string>& tokens) CXX11_OVERRIDE - { - tokens["STARTTLS"]; - } - Version GetVersion() CXX11_OVERRIDE { return Version("Provides support for the STARTTLS command", VF_VENDOR); |