| 189 | } |
| 190 | |
| 191 | int |
| 192 | CB_SNI(TSCont cont, TSEvent /* event ATS_UNUSED */, void *edata) |
| 193 | { |
| 194 | TSVConn ssl_vc = reinterpret_cast<TSVConn>(edata); |
| 195 | |
| 196 | int count = reinterpret_cast<intptr_t>(TSContDataGet(cont)); |
| 197 | |
| 198 | Dbg(dbg_ctl, "SNI callback %d %p", count, ssl_vc); |
| 199 | |
| 200 | // All done, reactivate things |
| 201 | TSVConnReenable(ssl_vc); |
| 202 | return TS_SUCCESS; |
| 203 | } |
| 204 | |
| 205 | int |
| 206 | CB_Cert_Immediate(TSCont cont, TSEvent /* event ATS_UNUSED */, void *edata) |
nothing calls this directly
no test coverage detected