| 421 | |
| 422 | |
| 423 | int SSL_do_handshake(SSL* ssl) |
| 424 | { |
| 425 | if (ssl->getSecurity().get_parms().entity_ == client_end) |
| 426 | return SSL_connect(ssl); |
| 427 | else |
| 428 | return SSL_accept(ssl); |
| 429 | } |
| 430 | |
| 431 | |
| 432 | int SSL_clear(SSL* ssl) |
nothing calls this directly
no test coverage detected