Differences From Artifact [98c4d4ca4a]:
- File src/XMPPDiscoEntity.m — part of check-in [31e88fde56] at 2013-03-24 15:33:42 on branch trunk — DiscoEntity: Answer to requests send to the caps node (user: florob@babelmonkeys.de, size: 4174) [annotate] [blame] [check-ins using]
To Artifact [f2cbe0aedb]:
- File src/XMPPDiscoEntity.m — part of check-in [b0b4a4460a] at 2013-06-05 19:01:39 on branch trunk — XMPPDiscoEntity: Update JID on resource bind (user: florob@babelmonkeys.de, size: 4281) [annotate] [blame] [check-ins using]
︙ | |||
102 103 104 105 106 107 108 109 110 111 112 113 114 115 | 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | + + + + + + | enumerator = [_features objectEnumerator]; while ((feature = [enumerator nextObject]) != nil) [caps appendFormat: @"%@<", feature]; return [caps SHA1Hash]; } - (void)connection: (XMPPConnection*)connection wasBoundToJID: (XMPPJID*)JID { _JID = [JID copy]; } - (BOOL)connection: (XMPPConnection*)connection didReceiveIQ: (XMPPIQ*)IQ { if (![[IQ to] isEqual: _JID]) return NO; |
︙ |