Overview
Comment: | Adjust to ObjFW changes |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | trunk |
Files: | files | file ages | folders |
SHA3-256: |
22d082c6ea1b730d24ccdc009fe56d65 |
User & Date: | js on 2021-11-07 20:04:58 |
Other Links: | manifest | tags |
Context
2021-11-07
| ||
20:04 | Adjust to ObjFW changes Leaf check-in: 22d082c6ea user: js tags: trunk | |
2021-11-06
| ||
00:15 | Adjust to ObjFW changes check-in: 8957076139 user: js tags: trunk | |
Changes
Modified src/SSLSocket.m from [7c2c09a5dc] to [3dadaa27ad].
︙ | ︙ | |||
280 281 282 283 284 285 286 | [super close]; } - (size_t)lowlevelReadIntoBuffer: (void *)buffer length: (size_t)length { ssize_t ret; | < < < < < < < > | 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 | [super close]; } - (size_t)lowlevelReadIntoBuffer: (void *)buffer length: (size_t)length { ssize_t ret; if (_SSL == NULL) @throw [OFNotOpenException exceptionWithObject: self]; if (length > INT_MAX) @throw [OFOutOfRangeException exception]; if (_socket == INVALID_SOCKET) @throw [OFNotOpenException exceptionWithObject: self]; |
︙ | ︙ | |||
319 320 321 322 323 324 325 | return ret; } - (size_t)lowlevelWriteBuffer: (const void *)buffer length: (size_t)length { int bytesWritten; | < < < < < < < < < < < > | | | | 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 | return ret; } - (size_t)lowlevelWriteBuffer: (const void *)buffer length: (size_t)length { int bytesWritten; if (_SSL == NULL) @throw [OFNotOpenException exceptionWithObject: self]; if (_socket == INVALID_SOCKET) @throw [OFNotOpenException exceptionWithObject: self]; if (length > INT_MAX) @throw [OFOutOfRangeException exception]; if ((bytesWritten = SSL_write(_SSL, buffer, (int)length)) < 0) @throw [OFWriteFailedException exceptionWithObject: self requestedLength: length bytesWritten: 0 errNo: 0]; return bytesWritten; } - (bool)hasDataInReadBuffer { if (_SSL != NULL && SSL_pending(_SSL) > 0) return true; return [super hasDataInReadBuffer]; } - (OFData *)channelBindingDataWithType: (OFString *)type { size_t length; char buffer[64]; |
︙ | ︙ |