mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-10-31 17:25:58 +01:00
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:
parent
5cb76891ba
commit
5f50f087ac
2 changed files with 3 additions and 3 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue