aboutsummaryrefslogtreecommitdiffstats
path: root/include/modules
diff options
context:
space:
mode:
authorGravatar Sadie Powell2021-12-08 12:32:29 +0000
committerGravatar Sadie Powell2021-12-08 12:32:29 +0000
commit05ccd525ada04bb1dd3bf9f52b3abdddb4ef2646 (patch)
tree8f6718ae8526126bf014f1dd17867c1d98e51efc /include/modules
parentConsistently use `!foo` instead of `foo == NULL`. (diff)
Replace some references to ssl with tls.
Diffstat (limited to 'include/modules')
-rw-r--r--include/modules/ssl.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/modules/ssl.h b/include/modules/ssl.h
index f616b39c8..17d76d240 100644
--- a/include/modules/ssl.h
+++ b/include/modules/ssl.h
@@ -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