| 79 | } |
| 80 | |
| 81 | HQTransaction * |
| 82 | HQSession::get_transaction(QUICStreamId id) |
| 83 | { |
| 84 | for (HQTransaction *t = this->_transaction_list.head; t; t = static_cast<HQTransaction *>(t->link.next)) { |
| 85 | if (t->get_transaction_id() == static_cast<int>(id)) { |
| 86 | return t; |
| 87 | } |
| 88 | } |
| 89 | |
| 90 | return nullptr; |
| 91 | } |
| 92 | |
| 93 | void |
| 94 | HQSession::do_io_close(int /* lerrno ATS_UNUSED */) |
no test coverage detected