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/src/qpid/client/ConnectionSettings.cpp | |
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/src/qpid/client/ConnectionSettings.cpp')
-rw-r--r-- | cpp/src/qpid/client/ConnectionSettings.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/cpp/src/qpid/client/ConnectionSettings.cpp b/cpp/src/qpid/client/ConnectionSettings.cpp index 60b2eac2e8..822e4af269 100644 --- a/cpp/src/qpid/client/ConnectionSettings.cpp +++ b/cpp/src/qpid/client/ConnectionSettings.cpp @@ -7,9 +7,9 @@ * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at - * + * * http://www.apache.org/licenses/LICENSE-2.0 - * + * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY @@ -30,7 +30,7 @@ namespace client { ConnectionSettings::ConnectionSettings() : protocol("tcp"), - host("localhost"), + host("localhost"), port(5672), locale("en_US"), heartbeat(0), @@ -40,7 +40,8 @@ ConnectionSettings::ConnectionSettings() : tcpNoDelay(false), service(qpid::saslName), minSsf(0), - maxSsf(256) + maxSsf(256), + sslCertName("") {} ConnectionSettings::~ConnectionSettings() {} |