| 59 | } |
| 60 | |
| 61 | void |
| 62 | Http2ServerSession::free() |
| 63 | { |
| 64 | auto mutex_thread = this->mutex->thread_holding; |
| 65 | if (Http2CommonSession::common_free(this)) { |
| 66 | Metrics::Gauge::decrement(http2_rsb.current_server_session_count); |
| 67 | THREAD_FREE(this, http2ServerSessionAllocator, mutex_thread); |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | void |
| 72 | Http2ServerSession::start() |
no outgoing calls
no test coverage detected