Differences From Artifact [3b375c6852]:
- File
src/SSLSocket.m
— part of check-in
[74db1e8212]
at
2016-07-09 21:24:03
on branch trunk
— Add SSLConnectionFailedException
This way, when an SSLSocket is passed where an OFTCPSocket is expected,
the description will still contain the error and no special code for
SSLSocket is necessary. (user: js, size: 11141) [annotate] [blame] [check-ins using]
To Artifact [119d9c726e]:
- File src/SSLSocket.m — part of check-in [43001c3544] at 2017-01-10 23:56:09 on branch trunk — Adjust to ObjFW changes (user: js, size: 11127) [annotate] [blame] [check-ins using]
︙ | |||
40 41 42 43 44 45 46 | 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 | - + | #if defined(__clang__) # pragma clang diagnostic pop #endif #import <ObjFW/OFThread.h> #import <ObjFW/OFHTTPRequest.h> #import <ObjFW/OFDataArray.h> |
︙ | |||
209 210 211 212 213 214 215 | 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 | - + | } SSL_set_verify(_SSL, SSL_VERIFY_PEER, NULL); } SSL_set_connect_state(_SSL); |
︙ | |||
284 285 286 287 288 289 290 | 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 | - + | } if (_requestClientCertificatesEnabled) SSL_set_verify(client->_SSL, SSL_VERIFY_PEER, NULL); SSL_set_accept_state(client->_SSL); |
︙ |