summaryrefslogtreecommitdiff
path: root/cpp/src/IceSSL/EndpointI.cpp
diff options
context:
space:
mode:
authorBrent Eagles <brent@zeroc.com>2006-04-28 16:04:57 +0000
committerBrent Eagles <brent@zeroc.com>2006-04-28 16:04:57 +0000
commitdf19bb86c00d3335e01bf5e01f6b256aa0077f86 (patch)
tree49a077d6616e9037573a1833c0f0febe27ef860d /cpp/src/IceSSL/EndpointI.cpp
parentadding IceSSL.FindCert (diff)
downloadice-df19bb86c00d3335e01bf5e01f6b256aa0077f86.tar.bz2
ice-df19bb86c00d3335e01bf5e01f6b256aa0077f86.tar.xz
ice-df19bb86c00d3335e01bf5e01f6b256aa0077f86.zip
Adding warning comments about changing toString() behaviors that may break
features.
Diffstat (limited to 'cpp/src/IceSSL/EndpointI.cpp')
-rw-r--r--cpp/src/IceSSL/EndpointI.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/cpp/src/IceSSL/EndpointI.cpp b/cpp/src/IceSSL/EndpointI.cpp
index 361ca90e3ae..3d80ad38f96 100644
--- a/cpp/src/IceSSL/EndpointI.cpp
+++ b/cpp/src/IceSSL/EndpointI.cpp
@@ -183,6 +183,13 @@ IceSSL::EndpointI::streamWrite(IceInternal::BasicStream* s) const
string
IceSSL::EndpointI::toString() const
{
+ //
+ // WARNING: Certain features, such as proxy validation in Glacier2,
+ // depend on the format of proxy strings. Changes to toString() and
+ // methods called to generate parts of the reference string could break
+ // these features. Please review for all features that depend on the
+ // format of proxyToString() before changing this and related code.
+ //
ostringstream s;
s << "ssl -h " << _host << " -p " << _port;
if(_timeout != -1)