| 155 | return TS_SUCCESS; |
| 156 | } |
| 157 | int |
| 158 | CB_Client_Hello_Immediate(TSCont cont, TSEvent /* event ATS_UNUSED */, void *edata) |
| 159 | { |
| 160 | TSVConn ssl_vc = reinterpret_cast<TSVConn>(edata); |
| 161 | |
| 162 | int count = reinterpret_cast<intptr_t>(TSContDataGet(cont)); |
| 163 | |
| 164 | Dbg(dbg_ctl, "Client Hello callback %d ssl_vc=%p", count, ssl_vc); |
| 165 | |
| 166 | // All done, reactivate things |
| 167 | TSVConnReenable(ssl_vc); |
| 168 | return TS_SUCCESS; |
| 169 | } |
| 170 | |
| 171 | int |
| 172 | CB_Client_Hello(TSCont cont, TSEvent /* event ATS_UNUSED */, void *edata) |
nothing calls this directly
no test coverage detected