| 1658 | } |
| 1659 | |
| 1660 | void |
| 1661 | Http2ConnectionState::set_stream_id(Http2Stream *stream) |
| 1662 | { |
| 1663 | if (stream->get_transaction_id() < 0) { |
| 1664 | Http2StreamId stream_id = (latest_streamid_in == 0) ? 3 : latest_streamid_in + 2; |
| 1665 | stream->set_transaction_id(stream_id); |
| 1666 | latest_streamid_in = stream_id; |
| 1667 | } |
| 1668 | } |
| 1669 | |
| 1670 | Http2Stream * |
| 1671 | Http2ConnectionState::create_initiating_stream(Http2Error &error) |
no test coverage detected