Overview
Comment: | Adapt to ObjFW changes |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
0668df366ce5bfe2dbd19f1dabd09868 |
User & Date: | florob@babelmonkeys.de on 2014-02-03 22:34:55 |
Other Links: | manifest | tags |
Context
2014-02-03
| ||
22:36 | XMPPConnection: Verify origin of IQ responses check-in: 4aae7b6dd1 user: florob@babelmonkeys.de tags: trunk | |
22:34 | Adapt to ObjFW changes check-in: 0668df366c user: florob@babelmonkeys.de tags: trunk | |
2013-11-22
| ||
20:21 | Adjust exceptions to ObjFW API change. check-in: f86a1460d0 user: js tags: trunk | |
Changes
Modified src/XMPPSCRAMAuth.h from [6f2119f050] to [45e55a1a76].
︙ | |||
108 109 110 111 112 113 114 | 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 | - + | password: (OFString*)password connection: (XMPPConnection*)connection hash: (Class)hash plusAvailable: (bool)plusAvailable; /// \cond internal - (OFString*)XMPP_genNonce; |
︙ |
Modified src/XMPPSCRAMAuth.m from [b4f3994709] to [cba6b07f8f].
︙ | |||
195 196 197 198 199 200 201 | 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 | - + | return [ret autorelease]; } - (OFDataArray*)XMPP_parseServerFirstMessage: (OFDataArray*)data { size_t i; |
︙ | |||
415 416 417 418 419 420 421 | 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 | - + | } return [OFString stringWithCString: (char*)buf encoding: OF_STRING_ENCODING_ASCII length: 64]; } |
︙ | |||
476 477 478 479 480 481 482 | 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 | - + + | - (OFDataArray*)XMPP_hiWithData: (OFDataArray*)str salt: (OFDataArray*)salt iterationCount: (intmax_t)i { OFAutoreleasePool *pool = [[OFAutoreleasePool alloc] init]; size_t digestSize = [_hashType digestSize]; |
︙ |
Modified src/XMPPSRVLookup.m from [ce2e51c85a] to [bc94aa9c37].
︙ | |||
104 105 106 107 108 109 110 | 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 | - + | if (dn_expand(ns_msg_base(handle), ns_msg_end(handle), (uint8_t*)&rdata[3], buffer, NS_MAXDNAME) < 1) @throw [OFInitializationFailedException exceptionWithClass: [self class]]; _target = [[OFString alloc] initWithCString: buffer |
︙ | |||
214 215 216 217 218 219 220 | 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 | - + | if (res_ninit(&_resState)) @throw [OFAddressTranslationFailedException exceptionWithHost: _domain]; answer = [self allocMemoryWithSize: pageSize]; answerLen = res_nsearch(&_resState, |
︙ |