| 40 | // |
| 41 | |
| 42 | void |
| 43 | Http3FrameDispatcher::add_handler(Http3FrameHandler *handler) |
| 44 | { |
| 45 | for (Http3FrameType t : handler->interests()) { |
| 46 | this->_handlers[static_cast<uint8_t>(t)].push_back(handler); |
| 47 | } |
| 48 | } |
| 49 | |
| 50 | Http3ErrorUPtr |
| 51 | Http3FrameDispatcher::on_read_ready(QUICStreamId stream_id, Http3StreamType stream_type, IOBufferReader &reader, uint64_t &nread) |
no test coverage detected