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

Method populate_protocol

src/proxy/http3/Http3Session.cc:68–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

66}
67
68int
69HQSession::populate_protocol(std::string_view *result, int size) const
70{
71 int retval = 0;
72 if (size > retval) {
73 result[retval++] = this->_vc->get_service<QUICSupport>()->get_quic_connection()->negotiated_application_name();
74 if (size > retval) {
75 retval += super::populate_protocol(result + retval, size - retval);
76 }
77 }
78 return retval;
79}
80
81HQTransaction *
82HQSession::get_transaction(QUICStreamId id)

Calls 2

get_quic_connectionMethod · 0.80

Tested by

no test coverage detected