| 1017 | } |
| 1018 | |
| 1019 | void |
| 1020 | QPACK::_update_reference_counts(uint64_t stream_id) |
| 1021 | { |
| 1022 | uint16_t smallest_ref_index = this->_references[stream_id].smallest; |
| 1023 | if (smallest_ref_index) { |
| 1024 | this->_dynamic_table.unref_entry(smallest_ref_index); |
| 1025 | } |
| 1026 | } |
| 1027 | |
| 1028 | void |
| 1029 | QPACK::_resume_decode() |
no test coverage detected