| 1442 | |
| 1443 | |
| 1444 | int SSL_pending(SSL* ssl) |
| 1445 | { |
| 1446 | // Just in case there's pending data that hasn't been processed yet... |
| 1447 | char c; |
| 1448 | SSL_peek(ssl, &c, 1); |
| 1449 | |
| 1450 | return ssl->bufferedData(); |
| 1451 | } |
| 1452 | |
| 1453 | |
| 1454 | void SSL_CTX_set_default_passwd_cb(SSL_CTX* ctx, pem_password_cb cb) |
nothing calls this directly
no test coverage detected