From 3b75e106759a63f2e8fd29aa4501701c769221e0 Mon Sep 17 00:00:00 2001 From: Matt Tucker Date: Mon, 12 Sep 2005 20:13:26 +0000 Subject: [PATCH] Improved Javadoc. git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2809 b35dd754-fafc-0310-a699-88a17e54d16e --- source/org/jivesoftware/smack/SSLXMPPConnection.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/source/org/jivesoftware/smack/SSLXMPPConnection.java b/source/org/jivesoftware/smack/SSLXMPPConnection.java index 3f4ef2917..c81e5f433 100644 --- a/source/org/jivesoftware/smack/SSLXMPPConnection.java +++ b/source/org/jivesoftware/smack/SSLXMPPConnection.java @@ -31,7 +31,12 @@ import java.security.KeyManagementException; import java.security.NoSuchAlgorithmException; /** - * Creates an SSL connection to a XMPP server. + * Creates an SSL connection to a XMPP server using the legacy dedicated SSL port + * mechanism. Fully compliant XMPP 1.0 servers (e.g. Jive Messenger 2.3.0) do not + * require using a dedicated SSL port. Instead, TLS (a standardized version of SSL 3.0) + * is dynamically negotiated over the standard XMPP port. Therefore, only use this + * class to connect to an XMPP server if you know that the server does not support + * XMPP 1.0 TLS connections. * * @author Matt Tucker */