86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
-
-
+
+
-
-
+
+
|
/* TODO: Count outgoing stanzas here and cache them, send own ACK requests
- (void)connection: (XMPPConnection*)connection_
didSendElement: (OFXMLElement*)element
{
}
*/
- (void)connection: (XMPPConnection*)connection_
wasBoundToJID: (XMPPJID*)jid
- (void)connection: (XMPPConnection*)connection
wasBoundToJID: (XMPPJID*)JID
{
if ([connection_ supportsStreamManagement])
[connection_ sendStanza:
if ([connection supportsStreamManagement])
[connection sendStanza:
[OFXMLElement elementWithName: @"enable"
namespace: XMPP_NS_SM]];
}
@end
|