MCPcopy Create free account
hub / github.com/apache/trafficserver / get_transaction

Method get_transaction

src/proxy/http3/Http3Session.cc:81–91  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

79}
80
81HQTransaction *
82HQSession::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
93void
94HQSession::do_io_close(int /* lerrno ATS_UNUSED */)

Calls 1

get_transaction_idMethod · 0.45

Tested by

no test coverage detected