Fixed possible delay when TLS is not supported by the server. SMACK-161

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@4773 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Gaston Dombiak 2006-08-02 22:17:11 +00:00 committed by gato
parent f5c5213e61
commit 47cc26e234
2 changed files with 11 additions and 1 deletions

View File

@ -477,7 +477,8 @@ class PacketReader {
}
}
}
if (!startTLSReceived) {
// Release the lock after TLS has been negotiated or we are not insterested in TLS
if (!startTLSReceived || !connection.getConfiguration().isTLSEnabled()) {
releaseConnectionIDLock();
}
}

View File

@ -1069,6 +1069,15 @@ public class XMPPConnection {
return saslAuthentication;
}
/**
* Returns the configuration used while connecting to the server.
*
* @return the configuration used while connecting to the server.
*/
ConnectionConfiguration getConfiguration() {
return configuration;
}
/**
* Notification message saying that the server supports TLS so confirm the server that we
* want to secure the connection.