diff options
author | Jonathan Robie <jonathan@apache.org> | 2011-02-02 16:00:51 +0000 |
---|---|---|
committer | Jonathan Robie <jonathan@apache.org> | 2011-02-02 16:00:51 +0000 |
commit | 5a8c4d1855fdcf7fe2588502d80b767edabae96e (patch) | |
tree | 281f03af5c9685ede59e59c241c2e01976a05ca5 /cpp/include/qpid/client/ConnectionSettings.h | |
parent | 8cc4082337bd6ea1be0c9f96d3383314f7fc228b (diff) | |
download | qpid-python-5a8c4d1855fdcf7fe2588502d80b767edabae96e.tar.gz |
Resolves QPID-3031. Allows client connection options to specify an SSL cert-name.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1066508 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/include/qpid/client/ConnectionSettings.h')
-rw-r--r-- | cpp/include/qpid/client/ConnectionSettings.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/cpp/include/qpid/client/ConnectionSettings.h b/cpp/include/qpid/client/ConnectionSettings.h index bf060e73bb..1c2ee28b1b 100644 --- a/cpp/include/qpid/client/ConnectionSettings.h +++ b/cpp/include/qpid/client/ConnectionSettings.h @@ -122,6 +122,11 @@ struct ConnectionSettings { * layer. 0 means no security layer allowed. */ unsigned int maxSsf; + /** + * SSL cert-name for the connection. Overrides global SSL + * settings. Used only when a client connects to the broker. + */ + std::string sslCertName; }; }} // namespace qpid::client |