| 1435 | |
| 1436 | |
| 1437 | int SSL_peek(SSL* ssl, void* buffer, int sz) |
| 1438 | { |
| 1439 | Data data(min(sz, MAX_RECORD_SIZE), static_cast<opaque*>(buffer)); |
| 1440 | return receiveData(*ssl, data, true); |
| 1441 | } |
| 1442 | |
| 1443 | |
| 1444 | int SSL_pending(SSL* ssl) |
no test coverage detected