1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-11-22 03:52:06 +01:00

Reset smSessionId on XMPPTCPConnection.disconnect()

This commit is contained in:
Florian Schmaus 2015-02-08 14:10:47 +01:00
parent a0cf121d7a
commit 1630b44b8d

View file

@ -482,6 +482,10 @@ public class XMPPTCPConnection extends AbstractXMPPConnection {
usingTLS = false; usingTLS = false;
reader = null; reader = null;
writer = null; writer = null;
// Reset the stream management session id to null, since if the stream is cleanly closed, i.e. sending a closing
// stream tag, there is no longer a stream to resume.
smSessionId = null;
maybeCompressFeaturesReceived.init(); maybeCompressFeaturesReceived.init();
compressSyncPoint.init(); compressSyncPoint.init();
smResumedSyncPoint.init(); smResumedSyncPoint.init();