SMACK-295: Fire reconnectionSuccessful event when session is established

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@11652 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Günther Niess 2010-02-24 00:45:40 +00:00 committed by niess
parent 5cb76891ba
commit 5f50f087ac
2 changed files with 3 additions and 3 deletions

View File

@ -34,7 +34,7 @@ public interface ConnectionCreationListener {
* Notification that a new connection has been created. The new connection
* will not yet be connected to the server.
*
* @param connection the newly created connection.
* @param connection the newly created connection.
*/
public void connectionCreated(Connection connection);

View File

@ -610,7 +610,7 @@ public class XMPPConnection extends Connection {
listener.connectionCreated(this);
}
}
else {
else if (!wasAuthenticated) {
packetReader.notifyReconnection();
}
@ -823,7 +823,6 @@ public class XMPPConnection extends Connection {
// Verify certificate presented by the server
context.init(kms,
new javax.net.ssl.TrustManager[]{new ServerTrustManager(getServiceName(), config)},
//new javax.net.ssl.TrustManager[]{new OpenTrustManager()},
new java.security.SecureRandom());
Socket plain = socket;
// Secure the plain connection
@ -995,6 +994,7 @@ public class XMPPConnection extends Connection {
login(config.getUsername(), config.getPassword(),
config.getResource());
}
packetReader.notifyReconnection();
}
catch (XMPPException e) {
e.printStackTrace();