| 32 | ClassAllocator<Http2ServerSession, false> http2ServerSessionAllocator("http2ServerSessionAllocator"); |
| 33 | |
| 34 | static int |
| 35 | send_connection_event(Continuation *cont, int event, void *edata) |
| 36 | { |
| 37 | SCOPED_MUTEX_LOCK(lock, cont->mutex, this_ethread()); |
| 38 | return cont->handleEvent(event, edata); |
| 39 | } |
| 40 | |
| 41 | Http2ServerSession::Http2ServerSession() = default; |
| 42 |
no test coverage detected