| 330 | } |
| 331 | |
| 332 | void |
| 333 | Http2ClientSession::set_no_activity_timeout() |
| 334 | { |
| 335 | // Only set if not previously set |
| 336 | if (this->_vc->get_inactivity_timeout() == 0) { |
| 337 | this->set_inactivity_timeout(HRTIME_SECONDS(Http2::no_activity_timeout_in)); |
| 338 | } |
| 339 | } |
| 340 | |
| 341 | HTTPVersion |
| 342 | Http2ClientSession::get_version(HTTPHdr & /* hdr ATS_UNUSED */) const |
nothing calls this directly
no test coverage detected