| 66 | } |
| 67 | |
| 68 | int |
| 69 | HQSession::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 | |
| 81 | HQTransaction * |
| 82 | HQSession::get_transaction(QUICStreamId id) |
no test coverage detected