| 203 | } |
| 204 | |
| 205 | int |
| 206 | CB_Cert_Immediate(TSCont cont, TSEvent /* event ATS_UNUSED */, void *edata) |
| 207 | { |
| 208 | TSVConn ssl_vc = reinterpret_cast<TSVConn>(edata); |
| 209 | |
| 210 | int count = reinterpret_cast<intptr_t>(TSContDataGet(cont)); |
| 211 | |
| 212 | Dbg(dbg_ctl, "Cert callback %d ssl_vc=%p", count, ssl_vc); |
| 213 | |
| 214 | TSVConnReenable(ssl_vc); |
| 215 | return TS_SUCCESS; |
| 216 | } |
| 217 | |
| 218 | int |
| 219 | CB_Cert(TSCont cont, TSEvent /* event ATS_UNUSED */, void *edata) |
nothing calls this directly
no test coverage detected