| 1886 | } |
| 1887 | |
| 1888 | Http2Stream * |
| 1889 | Http2ConnectionState::find_stream(Http2StreamId id) const |
| 1890 | { |
| 1891 | for (Http2Stream *s = stream_list.head; s; s = static_cast<Http2Stream *>(s->link.next)) { |
| 1892 | if (s->get_id() == id) { |
| 1893 | return s; |
| 1894 | } |
| 1895 | ink_assert(s != s->link.next); |
| 1896 | } |
| 1897 | return nullptr; |
| 1898 | } |
| 1899 | |
| 1900 | void |
| 1901 | Http2ConnectionState::restart_streams() |
no test coverage detected