| 47 | Http2ClientSession::Http2ClientSession() : super() {} |
| 48 | |
| 49 | void |
| 50 | Http2ClientSession::destroy() |
| 51 | { |
| 52 | if (!in_destroy) { |
| 53 | in_destroy = true; |
| 54 | REMEMBER(NO_EVENT, this->recursion) |
| 55 | Http2SsnDebug("session destroy"); |
| 56 | if (_vc) { |
| 57 | _vc->do_io_close(); |
| 58 | _vc = nullptr; |
| 59 | } |
| 60 | // Let everyone know we are going down |
| 61 | do_api_callout(TS_HTTP_SSN_CLOSE_HOOK); |
| 62 | } |
| 63 | } |
| 64 | |
| 65 | void |
| 66 | Http2ClientSession::free() |
nothing calls this directly
no test coverage detected