| 514 | } |
| 515 | |
| 516 | inline bool |
| 517 | Http2ConnectionState::is_valid_streamid(Http2StreamId id) const |
| 518 | { |
| 519 | if (http2_is_client_streamid(id)) { |
| 520 | return id <= get_latest_stream_id_in(); |
| 521 | } else { |
| 522 | return id <= get_latest_stream_id_out(); |
| 523 | } |
| 524 | } |
| 525 | |
| 526 | inline Http2ShutdownState |
| 527 | Http2ConnectionState::get_shutdown_state() const |
no test coverage detected