summaryrefslogtreecommitdiff
path: root/src/mongo/util/net/ssl_options.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/util/net/ssl_options.h')
-rw-r--r--src/mongo/util/net/ssl_options.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/mongo/util/net/ssl_options.h b/src/mongo/util/net/ssl_options.h
index 724a272c952..468073b2cbc 100644
--- a/src/mongo/util/net/ssl_options.h
+++ b/src/mongo/util/net/ssl_options.h
@@ -47,16 +47,17 @@ class Environment;
struct SSLParams {
enum class Protocols { TLS1_0, TLS1_1, TLS1_2 };
- AtomicInt32 sslMode; // --sslMode - the SSL operation mode, see enum SSLModes
+ AtomicInt32 sslMode; // --tlsMode - the TLS operation mode, see enum SSLModes
std::string sslPEMTempDHParam; // --setParameter OpenSSLDiffieHellmanParameters=file : PEM file
// with DH parameters.
- std::string sslPEMKeyFile; // --sslPEMKeyFile
- std::string sslPEMKeyPassword; // --sslPEMKeyPassword
- std::string sslClusterFile; // --sslInternalKeyFile
- std::string sslClusterPassword; // --sslInternalKeyPassword
- std::string sslCAFile; // --sslCAFile
- std::string sslCRLFile; // --sslCRLFile
- std::string sslCipherConfig; // --sslCipherConfig
+ std::string sslPEMKeyFile; // --tlsPEMKeyFile
+ std::string sslPEMKeyPassword; // --tlsPEMKeyPassword
+ std::string sslClusterFile; // --tlsInternalKeyFile
+ std::string sslClusterPassword; // --tlsInternalKeyPassword
+ std::string sslCAFile; // --tlsCAFile
+ std::string sslClusterCAFile; // --tlsClusterCAFile
+ std::string sslCRLFile; // --tlsCRLFile
+ std::string sslCipherConfig; // --tlsCipherConfig
struct CertificateSelector {
std::string subject;