mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-09 10:39:02 -04:00
Replace some references to ssl with tls.
This commit is contained in:
parent
2466c048e2
commit
05ccd525ad
@ -55,8 +55,8 @@ the network service.
|
||||
If a channel is specified then display TLS connection information
|
||||
for users in the specified channel.
|
||||
|
||||
If a user is specified then display information on the TLS (SSL)
|
||||
connection and certificate of the specified user.
|
||||
If a user is specified then display information on the TLS connection
|
||||
and certificate of the specified user.
|
||||
">
|
||||
|
||||
<helpop key="uninvite" title="/UNINVITE <nick> <channel>" value="
|
||||
@ -1090,7 +1090,7 @@ Matching extbans:
|
||||
realnameban module).
|
||||
s:<server> Matches users on a matching server (requires the
|
||||
serverban module).
|
||||
z:<sslfp> Matches users having the given TLS certificate
|
||||
z:<tlsfp> Matches users having the given TLS certificate
|
||||
fingerprint (requires the sslmodes module).
|
||||
w:<gateway> Matches users who are connecting via a WebIRC gateway that
|
||||
matches <gateway>.
|
||||
|
@ -45,7 +45,7 @@ class CoreExport ExtensionItem
|
||||
|
||||
/** Initializes an instance of the ExtensionItem class.
|
||||
* @param owner The module which created this ExtensionItem.
|
||||
* @param key The name of the extension item (e.g. ssl_cert).
|
||||
* @param key The name of the extension item (e.g. foo_bar).
|
||||
* @param exttype The type of Extensible that this ExtensionItem applies to.
|
||||
*/
|
||||
ExtensionItem(Module* owner, const std::string& key, ExtensibleType exttype);
|
||||
@ -193,7 +193,7 @@ class SimpleExtItem : public ExtensionItem
|
||||
public:
|
||||
/** Initializes an instance of the SimpleExtItem class.
|
||||
* @param parent The module which created this SimpleExtItem.
|
||||
* @param Key The name of the extension item (e.g. ssl_cert).
|
||||
* @param Key The name of the extension item (e.g. foo_bar).
|
||||
* @param exttype The type of Extensible that this SimpleExtItem applies to.
|
||||
*/
|
||||
SimpleExtItem(Module* parent, const std::string& Key, ExtensibleType exttype)
|
||||
@ -244,7 +244,7 @@ class CoreExport StringExtItem : public SimpleExtItem<std::string>
|
||||
public:
|
||||
/** Initializes an instance of the StringExtItem class.
|
||||
* @param owner The module which created this StringExtItem.
|
||||
* @param key The name of the extension item (e.g. ssl_cert).
|
||||
* @param key The name of the extension item (e.g. foo_bar).
|
||||
* @param exttype The type of Extensible that this IntExtItem applies to.
|
||||
* @param sync Whether this StringExtItem should be broadcast to other servers.
|
||||
*/
|
||||
@ -273,7 +273,7 @@ class CoreExport IntExtItem : public ExtensionItem
|
||||
public:
|
||||
/** Initializes an instance of the IntExtItem class.
|
||||
* @param owner The module which created this IntExtItem.
|
||||
* @param key The name of the extension item (e.g. ssl_cert).
|
||||
* @param key The name of the extension item (e.g. foo_bar).
|
||||
* @param exttype The type of Extensible that this IntExtItem applies to.
|
||||
* @param sync Whether this IntExtItem should be broadcast to other servers.
|
||||
*/
|
||||
@ -324,7 +324,7 @@ class CoreExport BoolExtItem : public ExtensionItem
|
||||
public:
|
||||
/** Initializes an instance of the BoolExtItem class.
|
||||
* @param owner The module which created this BoolExtItem.
|
||||
* @param key The name of the extension item (e.g. ssl_cert).
|
||||
* @param key The name of the extension item (e.g. foo_bar).
|
||||
* @param exttype The type of Extensible that this BoolExtItem applies to.
|
||||
* @param sync Whether this BoolExtItem should be broadcast to other servers.
|
||||
*/
|
||||
|
@ -153,16 +153,16 @@ public:
|
||||
class SSLIOHook : public IOHook
|
||||
{
|
||||
protected:
|
||||
/** An enumeration of possible TLS (SSL) socket states. */
|
||||
/** An enumeration of possible TLS socket states. */
|
||||
enum Status
|
||||
{
|
||||
/** The SSL socket has just been opened or has been closed. */
|
||||
/** The TLS socket has just been opened or has been closed. */
|
||||
STATUS_NONE,
|
||||
|
||||
/** The SSL socket is currently handshaking. */
|
||||
/** The TLS socket is currently handshaking. */
|
||||
STATUS_HANDSHAKING,
|
||||
|
||||
/** The SSL handshake has completed and data can be sent. */
|
||||
/** The TLS handshake has completed and data can be sent. */
|
||||
STATUS_OPEN
|
||||
};
|
||||
|
||||
@ -170,7 +170,7 @@ class SSLIOHook : public IOHook
|
||||
*/
|
||||
reference<ssl_cert> certificate;
|
||||
|
||||
/** The status of the TLS (SSL) connection. */
|
||||
/** The status of the TLS connection. */
|
||||
Status status = STATUS_NONE;
|
||||
|
||||
/** Reduce elements in a send queue by appending later elements to the first element until there are no more
|
||||
|
@ -1179,7 +1179,7 @@ class ModuleSSLGnuTLS final
|
||||
}
|
||||
catch (ModuleException& ex)
|
||||
{
|
||||
ServerInstance->SNO.WriteToSnoMask('r', "Failed to reload the GnuTLS TLS (SSL) profiles. " + ex.GetReason());
|
||||
ServerInstance->SNO.WriteToSnoMask('r', "Failed to reload the GnuTLS TLS profiles. " + ex.GetReason());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1010,7 +1010,7 @@ class ModuleSSLOpenSSL final
|
||||
}
|
||||
catch (ModuleException& ex)
|
||||
{
|
||||
ServerInstance->SNO.WriteToSnoMask('r', "Failed to reload the OpenSSL TLS (SSL) profiles. " + ex.GetReason());
|
||||
ServerInstance->SNO.WriteToSnoMask('r', "Failed to reload the OpenSSL TLS profiles. " + ex.GetReason());
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -105,7 +105,7 @@ It appears that the server endpoint is using plaintext! Make sure that:
|
||||
- ssl_openssl
|
||||
- ssl_mbedtls
|
||||
|
||||
* The value of <bind:ssl> is the same as an <sslprofile:name> field.
|
||||
* The value of <bind:sslprofile> is the same as an <sslprofile:name> field.
|
||||
|
||||
* The value of <sslprofile:provider> for your used TLS profile is set to
|
||||
"gnutls" if using the ssl_gnutls module, "openssl" if using the ssl_openssl
|
||||
|
Loading…
x
Reference in New Issue
Block a user