| 47 | // |
| 48 | |
| 49 | int |
| 50 | Http3Frame::length(const uint8_t *buf, size_t buf_len, uint64_t &length) |
| 51 | { |
| 52 | size_t length_field_length = 0; |
| 53 | return QUICVariableInt::decode(length, length_field_length, buf, buf_len); |
| 54 | } |
| 55 | |
| 56 | Http3FrameType |
| 57 | Http3Frame::type(const uint8_t *buf, size_t buf_len) |
no outgoing calls