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: |
7ea66a81daffbc4aa6c42c9f0a747b11 |
User & Date: | js on 2015-03-01 19:49:50 |
Other Links: | manifest | tags |
Context
2015-05-05
| ||
13:18 | configure: Use rpath check-in: 2dd19e51ce user: js tags: trunk | |
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 | |
Changes
Modified src/SSLSocket.m from [c52dc2d9da] to [50ced396e8].
︙ | |||
181 182 183 184 185 186 187 | 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 | + - + + + - + + | { SSLSocket *client = (SSLSocket*)[super accept]; of_string_encoding_t encoding; if ((client->_SSL = SSL_new(ctx)) == NULL || !SSL_set_fd(client->_SSL, client->_socket)) { [client SSL_super_close]; /* FIXME: Get a proper errno */ |
︙ | |||
227 228 229 230 231 232 233 | 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 | - + - - - - + + - - + - - - - - - | if (length > INT_MAX) @throw [OFOutOfRangeException exception]; if (_socket == INVALID_SOCKET) @throw [OFNotConnectedException exceptionWithSocket: self]; |
︙ | |||
264 265 266 267 268 269 270 | 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 | - + - - - - + + - - - + - - - - - - | { if (length > INT_MAX) @throw [OFOutOfRangeException exception]; if (_socket == INVALID_SOCKET) @throw [OFNotConnectedException exceptionWithSocket: self]; |
︙ |