aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_haproxy.cpp
diff options
context:
space:
mode:
authorGravatar Sadie Powell2020-04-14 19:57:10 +0100
committerGravatar Sadie Powell2020-04-14 19:57:10 +0100
commitbafb721640e6e5847b2a61f6c1989161bab04368 (patch)
treebc32aa57ef97eba6bbf3dc1c73b7289e04f1a82a /src/modules/m_haproxy.cpp
parentAlow modules to specify multiple syntax lines. (diff)
parentRename mkversions to mkdescriptions. (diff)
downloadinspircd++-bafb721640e6e5847b2a61f6c1989161bab04368.tar.gz
inspircd++-bafb721640e6e5847b2a61f6c1989161bab04368.tar.bz2
inspircd++-bafb721640e6e5847b2a61f6c1989161bab04368.zip
Merge branch 'insp3' into master.
Diffstat (limited to 'src/modules/m_haproxy.cpp')
-rw-r--r--src/modules/m_haproxy.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_haproxy.cpp b/src/modules/m_haproxy.cpp
index 046a0a5e8..86a90f433 100644
--- a/src/modules/m_haproxy.cpp
+++ b/src/modules/m_haproxy.cpp
@@ -200,16 +200,16 @@ class HAProxyHook : public IOHookMiddle
if (!sslapi)
return true;
- // If the client is not connecting via SSL the rest of this TLV is irrelevant.
+ // If the client is not connecting via TLS (SSL) the rest of this TLV is irrelevant.
std::string& recvq = GetRecvQ();
if ((recvq[start_index] & PP2_CLIENT_SSL) == 0)
return true;
// Create a fake ssl_cert for the user. Ideally we should use the user's
- // SSL client certificate here but as of 2018-10-16 this is not forwarded
+ // TLS (SSL) client certificate here but as of 2018-10-16 this is not forwarded
// by HAProxy.
ssl_cert* cert = new ssl_cert;
- cert->error = "HAProxy does not forward client SSL certificates";
+ cert->error = "HAProxy does not forward client TLS (SSL) certificates";
cert->invalid = true;
cert->revoked = true;
cert->trusted = false;