Differences From Artifact [3f70f40e9f]:
- File src/XMPPConnection.h — part of check-in [cdb78d79ac] at 2012-02-03 15:20:17 on branch trunk — More documentation improvements. (user: js, size: 9941) [annotate] [blame] [check-ins using]
To Artifact [abde314206]:
- File
src/XMPPConnection.h
— part of check-in
[aa0dc6e2b4]
at
2012-02-03 15:46:06
on branch trunk
— Let -[checkCertificate] return a BOOL and a reason.
Throwing an exception there was strange. (user: js, size: 10224) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
214 215 216 217 218 219 220 | /** * \brief Closes the stream to the XMPP service */ - (void)close; /** | | > > > > | | | 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 | /** * \brief Closes the stream to the XMPP service */ - (void)close; /** * \brief Checks the certificate presented by the server and sets the specified * pointer to the reason why the certificate is not valid * * \param reason A pointer to an OFString which is set to a reason in case the * certificate is not valid (otherwise, it does not touch it). * Passing NULL means the reason is not stored anywhere. * \return Whether the certificate is valid */ - (BOOL)checkCertificateAndGetReason: (OFString**)reason; /** * \brief Starts a loop handling incomming data. */ - (void)handleConnection; /** |
︙ | ︙ |