| 37 | } // end anonymous namespace |
| 38 | |
| 39 | Http3HeaderFramer::Http3HeaderFramer(Http3Transaction *transaction, VIO *source, QPACK *qpack, uint64_t stream_id) |
| 40 | : _transaction(transaction), _source_vio(source), _qpack(qpack), _stream_id(stream_id) |
| 41 | { |
| 42 | http_parser_init(&this->_http_parser); |
| 43 | } |
| 44 | |
| 45 | Http3HeaderFramer::~Http3HeaderFramer() |
| 46 | { |
nothing calls this directly
no test coverage detected