Differences From Artifact [e029c909bb]:
- File
src/XMPPAuthenticator.h
— 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: 2833) [annotate] [blame] [check-ins using]
To Artifact [0cd7759ddf]:
- File src/XMPPAuthenticator.h — part of check-in [f5739f6ee6] at 2012-02-03 10:43:44 on branch trunk — Hide instance variables from the documentation. (user: js, size: 2865) [annotate] [blame] [check-ins using]
︙ | |||
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | + + | #import <ObjFW/ObjFW.h> /** * \brief A base class for classes implementing authentication mechanisms */ @interface XMPPAuthenticator: OFObject { /// \cond internal OFString *authzid; OFString *authcid; OFString *password; /// \endcond } #ifdef OF_HAVE_PROPERTIES /// The authzid to get authorization for @property (copy) OFString *authzid; /// The authcid to authenticate with @property (copy) OFString *authcid; |
︙ |