diff options
author | 2025-03-07 00:35:47 -0500 | |
---|---|---|
committer | 2025-03-25 15:44:43 -0400 | |
commit | e2ad7f96f1e4f3ec88848daca5909e3ae01b2126 (patch) | |
tree | 9e43a9ecf0a368819dac315258428c0d89e4d2e9 /src/KuksaConfig.h | |
parent | 2e7d2c7a4d9c6dd37552c69a896286aa7dacd2c3 (diff) |
Rework TLS configuration to add an explicit "use-tls" option like
newer clients have, and to make using a CA certificate optional
to allow potentially using issued certificates. The new option
defaults to TLS disabled, which is a breaking change for most
existing configuration files.
Bug-AGL: SPEC-5387
Change-Id: Ic21caf403733a015853f70c9928f930ab9834710
Signed-off-by: Scott Murray <scott.murray@konsulko.com>
Diffstat (limited to 'src/KuksaConfig.h')
-rw-r--r-- | src/KuksaConfig.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/KuksaConfig.h b/src/KuksaConfig.h index e70385f..8250aa3 100644 --- a/src/KuksaConfig.h +++ b/src/KuksaConfig.h @@ -14,6 +14,8 @@ class KuksaConfig public: explicit KuksaConfig(const std::string &hostname, const unsigned port, + const bool useTls, + const std::string &caCertFileName, const std::string &caCert, const std::string &tlsServerName, const std::string &authToken); @@ -22,6 +24,8 @@ public: std::string hostname() { return m_hostname; }; unsigned port() { return m_port; }; + bool useTls() { return m_useTls; }; + std::string caCertFileName() { return m_caCertFileName; }; std::string caCert() { return m_caCert; }; std::string tlsServerName() { return m_tlsServerName; }; std::string authToken() { return m_authToken; }; @@ -31,6 +35,8 @@ public: private: std::string m_hostname; unsigned m_port; + bool m_useTls; + std::string m_caCertFileName; std::string m_caCert; std::string m_tlsServerName; std::string m_authToken; |