| 1687 | } |
| 1688 | |
| 1689 | int |
| 1690 | SSLNetVConnection::populate(Connection &con, Continuation *c, void *arg) |
| 1691 | { |
| 1692 | int retval = super::populate(con, c, arg); |
| 1693 | if (retval != EVENT_DONE) { |
| 1694 | return retval; |
| 1695 | } |
| 1696 | // Add in the SSL data |
| 1697 | this->ssl = static_cast<SSL *>(arg); |
| 1698 | // Maybe bring over the stats? |
| 1699 | |
| 1700 | sslHandshakeStatus = SSLHandshakeStatus::SSL_HANDSHAKE_DONE; |
| 1701 | this->_bindSSLObject(); |
| 1702 | return EVENT_DONE; |
| 1703 | } |
| 1704 | |
| 1705 | void |
| 1706 | SSLNetVConnection::_in_context_tunnel() |
no test coverage detected