Overview
Comment: | Adjust to ObjFW changes |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
089eb98b6957fa821978dcdd61e03601 |
User & Date: | js on 2015-01-05 21:43:09 |
Other Links: | manifest | tags |
Context
2015-03-01
| ||
19:49 | Adjust to ObjFW changes check-in: 7ea66a81da user: js tags: trunk | |
2015-01-05
| ||
21:43 | Adjust to ObjFW changes check-in: 089eb98b69 user: js tags: trunk | |
2014-06-03
| ||
19:37 | Update buildsys check-in: 53c0a0c053 user: js tags: trunk | |
Changes
Modified src/SSLSocket.m from [65a015edb7] to [c52dc2d9da].
1 | 1 2 3 4 5 6 7 8 9 10 | - + + | /* |
︙ | |||
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | + + | #include <openssl/crypto.h> #include <openssl/err.h> #import <ObjFW/OFThread.h> #import <ObjFW/OFHTTPRequest.h> #import <ObjFW/OFDataArray.h> #import <ObjFW/OFSystemInfo.h> #import <ObjFW/OFAcceptFailedException.h> #import <ObjFW/OFConnectionFailedException.h> #import <ObjFW/OFInitializationFailedException.h> #import <ObjFW/OFInvalidArgumentException.h> #import <ObjFW/OFNotConnectedException.h> #import <ObjFW/OFOutOfRangeException.h> #import <ObjFW/OFReadFailedException.h> #import <ObjFW/OFWriteFailedException.h> #import <ObjFW/macros.h> #import <ObjFW/threading.h> #import "SSLSocket.h" #import "SSLInvalidCertificateException.h" #import "X509Certificate.h" |
︙ | |||
145 146 147 148 149 150 151 | 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 | - + | exceptionWithHost: nil port: 0 socket: self]; } SSL_set_connect_state(_SSL); |
︙ | |||
186 187 188 189 190 191 192 | 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 | - + + | } if (_requestsClientCertificates) SSL_set_verify(client->_SSL, SSL_VERIFY_PEER, NULL); SSL_set_accept_state(client->_SSL); |
︙ |