diff options
| author | 2020-04-14 19:57:10 +0100 | |
|---|---|---|
| committer | 2020-04-14 19:57:10 +0100 | |
| commit | bafb721640e6e5847b2a61f6c1989161bab04368 (patch) | |
| tree | bc32aa57ef97eba6bbf3dc1c73b7289e04f1a82a /src/modules/m_haproxy.cpp | |
| parent | Alow modules to specify multiple syntax lines. (diff) | |
| parent | Rename mkversions to mkdescriptions. (diff) | |
| download | inspircd++-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.cpp | 6 |
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; |
