| 54 | } |
| 55 | |
| 56 | int |
| 57 | CB_Pre_Accept(TSCont cont, TSEvent event, void *edata) |
| 58 | { |
| 59 | TSVConn ssl_vc = reinterpret_cast<TSVConn>(edata); |
| 60 | |
| 61 | int count = reinterpret_cast<intptr_t>(TSContDataGet(cont)); |
| 62 | |
| 63 | Dbg(dbg_ctl, "Pre accept callback %d %p - event is %s", count, ssl_vc, event == TS_EVENT_VCONN_START ? "good" : "bad"); |
| 64 | |
| 65 | // All done, reactivate things |
| 66 | TSVConnReenable(ssl_vc); |
| 67 | return TS_SUCCESS; |
| 68 | } |
| 69 | |
| 70 | int |
| 71 | CB_Pre_Accept_Delay(TSCont cont, TSEvent event, void *edata) |
nothing calls this directly
no test coverage detected