| 312 | } |
| 313 | |
| 314 | void |
| 315 | ProxySession::_handle_if_ssl(NetVConnection *new_vc) |
| 316 | { |
| 317 | auto tbs = new_vc->get_service<TLSBasicSupport>(); |
| 318 | if (tbs) { |
| 319 | _ssl = std::make_unique<SSLProxySession>(); |
| 320 | _ssl.get()->init(*new_vc); |
| 321 | } |
| 322 | } |
| 323 | |
| 324 | VIO * |
| 325 | ProxySession::do_io_read(Continuation *c, int64_t nbytes, MIOBuffer *buf) |
no test coverage detected