| 184 | } |
| 185 | |
| 186 | TSSslConnection |
| 187 | InterceptPlugin::getSslConnection() |
| 188 | { |
| 189 | if (!state_->net_vc_) { |
| 190 | LOG_ERROR("Intercept Plugin is not ready to provide SSL Connection"); |
| 191 | return nullptr; |
| 192 | } |
| 193 | |
| 194 | return TSVConnSslConnectionGet(state_->net_vc_); |
| 195 | } |
| 196 | |
| 197 | bool |
| 198 | InterceptPlugin::doRead() |
nothing calls this directly
no test coverage detected