Differences From Artifact [7d556a745d]:
- File src/XMPPAuthenticator.m — part of check-in [3b589295f9] at 2011-05-26 20:42:16 on branch trunk — Check for res_ndestroy. (user: js, size: 2715) [annotate] [blame] [check-ins using]
To Artifact [e5f2fd7299]:
- File
src/XMPPAuthenticator.m
— part of check-in
[0aab2fde67]
at
2011-09-18 19:33:19
on branch trunk
— Fix XMPPAuthenticator to support non-optimized message flow
While RFC6120 allows and encourages sending data with the success
message it is also legal to send the same data as a challenge and
await an empty response. This rework honors that fact. (user: florob@babelmonkeys.de, size: 2420) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
89 90 91 92 93 94 95 | } - (OFString*)password { return [[password copy] autorelease]; } | | | < | < < < | < < < < | 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 | } - (OFString*)password { return [[password copy] autorelease]; } - (OFDataArray*)initialMessage { return nil; } - (OFDataArray*)continueWithData: (OFDataArray*)challenge { return nil; } @end |