| 393 | } |
| 394 | |
| 395 | void |
| 396 | Http2ServerSession::set_no_activity_timeout() |
| 397 | { |
| 398 | // Only set if not previously set |
| 399 | if (this->_vc->get_inactivity_timeout() == 0) { |
| 400 | this->set_inactivity_timeout(HRTIME_SECONDS(Http2::no_activity_timeout_out)); |
| 401 | } |
| 402 | } |
| 403 | |
| 404 | HTTPVersion |
| 405 | Http2ServerSession::get_version(HTTPHdr & /* hdr ATS_UNUSED */) const |
no test coverage detected