]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_starttls.cpp
Update user-facing text and comments of SSL to TLS.
[user/henk/code/inspircd.git] / src / modules / m_starttls.cpp
index 97fe4c9a95d0eb93318e9de7689728a5a97afec8..35e9985e9a5382b005e0cb9a2103025191ec3164 100644 (file)
@@ -65,7 +65,7 @@ class CommandStartTLS : public SplitCommand
 
                user->WriteNumeric(RPL_STARTTLS, "STARTTLS successful, go ahead with TLS handshake");
                /* We need to flush the write buffer prior to adding the IOHook,
-                * otherwise we'll be sending this line inside the SSL session - which
+                * otherwise we'll be sending this line inside the TLS (SSL) session - which
                 * won't start its handshake until the client gets this line. Currently,
                 * we assume the write will not block here; this is usually safe, as
                 * STARTTLS is sent very early on in the registration phase, where the
@@ -107,7 +107,7 @@ class ModuleStartTLS : public Module
 
        Version GetVersion() CXX11_OVERRIDE
        {
-               return Version("Provides the STARTTLS command", VF_VENDOR);
+               return Version("Provides the IRCv3 tls client capability.", VF_VENDOR);
        }
 };