]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_ircv3_sts.cpp
Update user-facing text and comments of SSL to TLS.
[user/henk/code/inspircd.git] / src / modules / m_ircv3_sts.cpp
index 6d616f74eb364ef472324a59f04e0db8b94c92e5..bca378f24318dcfc15990d716dd8ea9806205f67 100644 (file)
@@ -128,7 +128,7 @@ class ModuleIRCv3STS : public Module
  private:
        STSCap cap;
 
-       // The IRCv3 STS specification requires that the server is listening using SSL using a valid certificate.
+       // The IRCv3 STS specification requires that the server is listening using TLS (SSL) using a valid certificate.
        bool HasValidSSLPort(unsigned int port)
        {
                for (std::vector<ListenSocket*>::const_iterator iter = ServerInstance->ports.begin(); iter != ServerInstance->ports.end(); ++iter)
@@ -140,7 +140,7 @@ class ModuleIRCv3STS : public Module
                        if (saport != port)
                                continue;
 
-                       // Is this listener using SSL?
+                       // Is this listener using TLS (SSL)?
                        if (ls->bind_tag->getString("ssl").empty())
                                continue;