| 63 | } |
| 64 | |
| 65 | void |
| 66 | Http2ClientSession::free() |
| 67 | { |
| 68 | auto mutex_thread = this->mutex->thread_holding; |
| 69 | if (Http2CommonSession::common_free(this)) { |
| 70 | Metrics::Gauge::decrement(http2_rsb.current_client_session_count); |
| 71 | THREAD_FREE(this, http2ClientSessionAllocator, mutex_thread); |
| 72 | } |
| 73 | } |
| 74 | |
| 75 | void |
| 76 | Http2ClientSession::start() |